微信小程序?qū)崿F(xiàn)帶縮略圖輪播效果
更新時間:2018年11月04日 10:09:40 作者:瑪咪啞哄
這篇文章主要為大家詳細介紹了微信小程序?qū)崿F(xiàn)帶縮略圖的輪播效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了微信小程序?qū)崿F(xiàn)實現(xiàn)輪播效果展示的具體代碼,供大家參考,具體內(nèi)容如下
wxml:
<view id="content">
<!--banner-->
<view class="recommend">
<view class="swiper-container">
<swiper autoplay="auto" interval="5000" duration="500" current="{{swiperCurrent}}" circular="{{circular}}" bindchange="swiperChange" class="swiper">
<block wx:for="{{slider}}" wx:key="unique">
<swiper-item data-id="{{item.id}}" data-url="{{item.linkUrl}}" class="dot{{index == swiperCurrent ? ' active' : ''}}" bindtap="chuangEvents" id="{{index}}">
<image src="{{item.picUrl}}" class="img"></image>
<span>{{item.index+1}}</span>
</swiper-item>
</block>
</swiper>
<view class="dots">
<swiper autoplay="auto" interval="5000" display-multiple-items="7" duration="500" current="{{dotsCurrent}}" circular="{{circular}}" bindchange="dotsChange">
<block wx:for="{{slider}}" wx:key="unique">
<swiper-item data-id="{{item.id}}" class="dot{{index == swiperCurrent ? ' active' : ''}}" bindtap="chuangEvent" id="{{index}}">
<image src="{{item.picUrl}}" class="imgs"></image>
</swiper-item>
</block>
</swiper>
</view>
</view>
</view>
</view>
wxss:
/* pages/shouye/shouye.wxss */
page {
background: #333;
width: 100%;
height: 100%;
overflow: hidden;
}
#content {
background: #333;
width: 100%;
height: 100%;
overflow: hidden;
}
a {
width: 100%;
height: 50px;
overflow: hidden;
}
/*banner輪播 */
.swiper-container {
margin-top: 23%;
position: relative;
}
.swiper-container .swiper {
height: 600rpx;
}
.swiper-container .swiper .img {
width: 100%;
height: 100%;
}
.swiper-container .dots {
position: fixed;
height: 80px;
right: 0rpx;
width: 100%;
bottom: 0rpx;
}
.swiper-container .dots .dot {
/* margin: auto 3px; */
/* width: 58px !important; */
height: 65px !important;
/* background: #333; */
/* transition: all 0.6s; */
}
.swiper-container .dots .dot.active .imgs {
width: 100% !important;
height: 100%;
margin: 0% auto;
}
.imgs {
width: 85%;
display: block;
margin: 5% auto;
height: 90%;
}
.swiper-container .dotes {
position: absolute;
right: 40rpx;
bottom: 20rpx;
display: flex;
justify-content: center;
}
.swiper-container .dotes .dote {
margin: 0 10rpx;
width: 28rpx;
height: 28rpx;
background: #fff;
border-radius: 50%;
transition: all 0.6s;
font: 300 18rpx/28rpx "microsoft yahei";
text-align: center;
}
.swiper-container .dotes .dote.actives {
background: #f80;
color: #fff;
}
js
//banner
Page({
data: {
//輪播圖
slider: [],
swiperCurrent: 3,
slider: [{
url: '', picUrl: 'images/1.jpg'
},
{
picUrl: 'images/5.jpg'
},
{
picUrl: 'images/3.jpg'
},
{
picUrl: 'images/4.jpg'
},
{
picUrl: 'images/5.jpg'
},
{
picUrl: 'images/3.jpg'
},
{
picUrl: 'images/5.jpg'
},
{
picUrl: 'images/3.jpg'
},
{
picUrl: 'images/5.jpg'
},
{
picUrl: 'images/3.jpg'
},
{
picUrl: 'images/5.jpg'
},
{
picUrl: 'images/3.jpg'
}
],
indicatorDots: true,
autoplay: true,
interval: 2000,
duration: 1000,
circular: true,
beforeColor: "white",//指示點顏色
afterColor: "coral",//當前選中的指示點顏色
},
//輪播圖的切換事件
swiperChange: function (e) {
//只要把切換后當前的index傳給<swiper>組件的current屬性即可
this.setData({
swiperCurrent: e.detail.current
})
},
dotsChange: function (e) {
//只要把切換后當前的index傳給<swiper>組件的current屬性即可
this.setData({
dotsCurrent: e.detail.current
})
},
//點擊指示點切換
chuangEvent: function (e) {
this.setData({
swiperCurrent: e.currentTarget.id
})
},
chuangEvents: function (e) {
this.setData({
dotsCurrent: e.currentTarget.id
})
},
})
效果圖:

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- 微信小程序使用swiper組件實現(xiàn)層疊輪播圖
- 微信小程序視圖容器(swiper)組件創(chuàng)建輪播圖
- 微信小程序使用swiper組件實現(xiàn)類3D輪播圖
- 微信小程序之swiper輪播圖中的圖片自適應高度的方法
- 微信小程序圖片輪播組件gallery slider使用方法詳解
- 微信小程序?qū)崿F(xiàn)下拉刷新和輪播圖效果
- 微信小程序 swiper組件構(gòu)建輪播圖的實例
- 微信小程序?qū)崿F(xiàn)輪播圖效果
- 微信小程序聯(lián)網(wǎng)請求的輪播圖
- 微信小程序?qū)崙?zhàn)之輪播圖(3)
- 微信小程序?qū)崿F(xiàn)圖片輪播及文件上傳
- 微信小程序 輪播圖swiper詳解及實例(源碼下載)
- 微信小程序 swiper組件輪播圖詳解及實例
相關文章
var?let?const關鍵字之間的區(qū)別及使用場景示例詳解
這篇文章主要為大家介紹了var?let?const關鍵字之間的區(qū)別及使用場景示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-12-12
es6中的import導入模塊 和 export導出模塊詳解
require 是 CommonJS 模塊系統(tǒng)中用于導入模塊的關鍵字,采用同步加載方式;而 import 和 export 是 ES6 模塊系統(tǒng)中用于導入和導出模塊的關鍵字,采用靜態(tài)加載方式,并且支持異步加載,這篇文章主要介紹了es6中的import導入模塊 和 export導出模塊,需要的朋友可以參考下2023-11-11
webpack4與babel配合使es6代碼可運行于低版本瀏覽器的方法
這篇文章主要介紹了webpack4與babel配合使es6代碼可運行于低版本瀏覽器的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-10-10
Object.defineProperty()?完整指南示例詳解
本文深入理解`Object.defineProperty()`的方法,包括基礎概念、屬性描述符的完整選項、常見使用場景等,感興趣的朋友跟隨小編一起看看吧2025-01-01
微信小程序 websocket 實現(xiàn)SpringMVC+Spring+Mybatis
這篇文章主要介紹了 微信小程序websocket實現(xiàn)SpringMVC+Spring+Mybatis的相關資料,這里提供實現(xiàn)思路及實現(xiàn)代碼,需要的朋友可以參考下2017-08-08
JavaScript實現(xiàn)的商品搶購倒計時功能示例
這篇文章主要介紹了JavaScript實現(xiàn)的商品搶購倒計時功能,可實現(xiàn)分秒級別的實時顯示倒計時效果,涉及js日期時間計算與頁面元素動態(tài)操作相關技巧,需要的朋友可以參考下2017-04-04

