效果圖如下所示:
具體代碼如下所示:
<swiper class="swiper-block" previous-margin="90rpx" next-margin="90rpx" current="0" bindchange="swiperChange"> <block wx:for="{{imgUrls}}" wx:index="{{index}}"> <swiper-item class="swiper-item"> <image mode="aspectFill" src="{{item}}" class="slide-image {{swiperIndex == index ? 'active' : ''}}"/> </swiper-item> </block> </swiper> .swiper-block{ height: 480rpx; width: 100%; } .swiper-item{ display: flex; flex-direction: column; justify-content: center; align-items: flex-start; overflow:unset; } .slide-image{ height:320rpx; width: 520rpx; border-radius: 9rpx; box-shadow: 0px 0px 30rpx rgba(0, 0,0,.2); margin: 0rpx 30rpx; z-index: 1; } .active{ transform: scale(1.14); transition:all .2s ease-in 0s; z-index: 20; }.swiper-block{ height: 480rpx; width: 100%; } .swiper-item{ display: flex; flex-direction: column; justify-content: center; align-items: flex-start; overflow:unset; } .slide-image{ height:320rpx; width: 520rpx; border-radius: 9rpx; box-shadow: 0px 0px 30rpx rgba(0, 0,0,.2); margin: 0rpx 30rpx; z-index: 1; } .active{ transform: scale(1.14); transition:all .2s ease-in 0s; z-index: 20; } Page({ data: { imgUrls: [ 'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_1758634296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ], indicatorDots: false, autoplay: false, interval: 5000, duration: 1000 }, swiperChange(e) { const that = this; that.setData({ swiperIndex: e.detail.current, }) } })
總結(jié)
以上所述是小編給大家介紹的微信小程序swiper實(shí)現(xiàn)滑動(dòng)放大縮小效果,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com