微信小程序swiper实现滑动放大缩小效果

效果图如下所示:

微信小程序swiper实现滑动放大缩小效果

具体代码如下所示:

<swiper previous-margin="90rpx" next-margin="90rpx" current="0" bindchange="swiperChange"> <block wx:for="{{imgUrls}}" wx:index="{{index}}"> <swiper-item> <image mode="aspectFill" src="https://www.jb51.net/{{item}}"/> </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_175866434296.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, }) } })

总结

以上所述是小编给大家介绍的微信小程序swiper实现滑动放大缩小效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b470a87474e277d03d297504ab13df80.html