小程序旋转木马 轮播图

Posted 鹿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序旋转木马 轮播图相关的知识,希望对你有一定的参考价值。

前言

看下效果吧

 

分析

自动滚动+手动拖拽 (原生组件帮我们完成 Property:autoplay)
面板指示点 (原生组件帮我们完成 Property:indicator-dots)
左右可以露出非Active状态图的边缘(即Quiet状态, 后文class会以这两个名字定义) (原生组件帮我们完成 Property:previous-margin、next-margin)
图片滚动到中心位置放大,滚动出去缩小 (我们手写实现,利用技术点中提到的滚动回调+条件渲染。其中滚动回调用 Property:bindchange)
这样看下来就很清晰了,需要我们实现的只有一个动画放大缩小。再进一步

直接上代码吧,嘻嘻

wxml

//.wxml
 <swiper class=\'swiperClass\' autoplay indicator-color="#a39f99" indicator-active-color="#f49641" indicator-dots  interval="2000" duration="1000" previous-margin="30px" next-margin="30px" circular bindchange="bindchange" style=\'height: {{swiperHeight}}px\'>
 <block wx:for="{{imgUrls}}" wx:key="{{index}}">
 <swiper-item>
 <image src="{{item}}" class="slide-image {{swiperIndex == index ? \'active\' : \'quiet\'}}" mode=\'aspectFill\'>
 </image>
 </swiper-item>
 </block>

 

wxss

//.wxss
.swiperClass {
  margin: 0;
  margin-top: 10px;
}
 
.slide-image {
  width: 100%; 
  height: 90%;
  border-radius: 10px;
  position: relative;
}
 
image.active {
  transform: none;
  transition: all 0.2s ease-in 0s;
} 
 
image.quiet {
  transform: scale(0.8333333);
  transition: all 0.2s ease-in 0s;
//.js
data: {
    imgUrls: [
\'http://img17.3lian.com/201612/16/88dc7fcc74be4e24f1e0bacbd8bef48d.jpg\',
      \'http://f0.topitme.com/0/6a/6c/11800178627706c6a0o.jpg\',
 \'http://img17.3lian.com/d/file/201701/05/14d111f12c9fa2796c774ffef1bbfe14.jpg\',
 ],
    swiperIndex: 0 ,//这里不写第一次启动展示的时候会有问题
    swiperHeight:300
 },
 
bindchange(e) {
 this.setData({
      swiperIndex: e.detail.current
 })

 

以上是关于小程序旋转木马 轮播图的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript旋转木马轮播图

旋转木马轮播图(转)

移动端 旋转木马轮播图 可触摸滑动

JS旋转木马图片轮播

featureCarousel.js 3d轮播图插件

木马轮播图代码Jq