share.wxml 633 B

12345678
  1. <view class="container">
  2. <swiper autoplay="{{false}}" bindchange="__e" circular="{{false}}" class="posters-box" data-event-opts="{{[ [ 'change',[ [ 'bindchange',['$event'] ] ] ] ]}}" duration="{{500}}" interval="{{3000}}" nextMargin="40px" previousMargin="40px">
  3. <swiper-item wx:for="{{shareList}}" wx:key="index">
  4. <image class="{{['slide-image',swiperIndex==index?'active':'quiet']}}" mode="aspectFill" src="{{item.poster}}"></image>
  5. </swiper-item>
  6. </swiper>
  7. <view bindtap="__e" class="keep" data-event-opts="{{[ [ 'tap',[ [ 'savePosterPath',['$event'] ] ] ] ]}}">保存海报</view>
  8. </view>