24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
<view class="container">
|
|
<header-nav inner-text="Some text">分享海报</header-nav>
|
|
<view class='swiper'>
|
|
<swiper previous-margin="50px" next-margin="50px" interval="500" current="{{ current_index }}" bindchange="change_page" style="height:{{swiperHeight}}px" >
|
|
<block wx:for="{{poster}}" wx:key="index">
|
|
<swiper-item>
|
|
<image class='poster' bindlongpress='save_pic' src="{{ item.src }}" bindload="onload" mode='widthFix' bindtap='preview_img' ></image>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
</view>
|
|
<view class='page' wx:if="{{ poster.length>1 }}">{{ current_index+1 }} / {{imgs.length}}</view>
|
|
<view class='tips' wx:if="{{ poster.length>1 }}">左右滑动屏幕选一张你喜欢的海报,然后点击下面按钮</view>
|
|
<view class='btn savebtn' bindtap='save_pic'>保存到系统相册</view>
|
|
<!--保存海报图层 -->
|
|
<view class='share-box' wx:if="{{ show_share_box }}">
|
|
<view class='whitebox' bindtap="close_share"></view>
|
|
<view class='box'>
|
|
<view class='title'>海报已保存到系统相册</view>
|
|
<view class='tips'>快去分享给小伙伴们吧</view>
|
|
<view class='btn' bindtap="close_share">知道了</view>
|
|
</view>
|
|
</view>
|
|
</view> |