微信小程序?qū)崿F(xiàn)帶縮略圖輪播效果
本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)實(shí)現(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",//指示點(diǎn)顏色
afterColor: "coral",//當(dāng)前選中的指示點(diǎn)顏色
},
//輪播圖的切換事件
swiperChange: function (e) {
//只要把切換后當(dāng)前的index傳給<swiper>組件的current屬性即可
this.setData({
swiperCurrent: e.detail.current
})
},
dotsChange: function (e) {
//只要把切換后當(dāng)前的index傳給<swiper>組件的current屬性即可
this.setData({
dotsCurrent: e.detail.current
})
},
//點(diǎn)擊指示點(diǎn)切換
chuangEvent: function (e) {
this.setData({
swiperCurrent: e.currentTarget.id
})
},
chuangEvents: function (e) {
this.setData({
dotsCurrent: e.currentTarget.id
})
},
})
效果圖:

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

