微信小程式技術點 -- 3D輪播圖

Cassie1492949236626發表於2018-06-15

預覽效果

微信小程式技術點 -- 3D輪播圖

程式碼

swiper.js程式碼

Page({
  data: {
    imgUrls: [
      'http://chuantu.biz/t6/328/1528961604x-1376440252.png',
      'http://chuantu.biz/t6/328/1528961633x-1376440252.png',
      'http://chuantu.biz/t6/328/1528961652x-1376440252.png'
    ],
    swiperIndex: 1
  },
  swiperChange(e) {
    this.setData({
      swiperIndex: e.detail.current
    })
  }
})
複製程式碼

swiper.wxml程式碼

<view class='page-hb'>
  <swiper indicator-dots="{{true}}" autoplay="{{false}}" previous-margin="{{'188rpx'}}" next-margin="{{'188rpx'}}" bindchange="swiperChange" current='1'>
    <block wx:for="{{imgUrls}}" wx:key="{{index}}">
      <swiper-item class="{{swiperIndex == index ? 'active' : ''}}">
        <image src="{{item}}" class="slide-image {{swiperIndex == index ? 'active' : ''}}"/>
      </swiper-item>
    </block>
  </swiper>
</view>
複製程式碼

swiper.wxss程式碼

/**我這裡為iPhone6的設計圖*/
swiper{
  width: 750rpx;
  height: 500rpx;
}
swiper-item{
  padding-top: 100rpx;
}
/**這裡圖片的尺寸需要動態設定,margin-left需要設定為width的一半的負值*/
.page-hb image{
  width: 280rpx;
  height: 280rpx;
  position: absolute;
  left: 50%;
  margin-left: -140rpx; 
}
.page-hb image.active{
  transform: scale(1.29);
  transition:all .2s ease-in 0s;
}
複製程式碼

相關文章