东风启辰小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 line
1.8KB

  1. <!--pages/poster/poster.wxml-->
  2. <view class="all">
  3. <view class="main">
  4. <view class="swiperFrame">
  5. <swiper class="swiperSty" current="{{swiperCurrent}}" bindchange="swiperChange" previous-margin="130rpx" next-margin="130rpx">
  6. <swiper-item wx:for="{{posterUrl}}" wx:key="index">
  7. <view class="selectTempFrame {{index==swiperCurrent?'selectTempFrameBorder':''}}">
  8. <image style="width:100%;height:100%;" src="{{item}}"></image>
  9. <image wx:if="{{index==swiperCurrent}}" class="posterChoose" src="{{imgUrl+'/images/posterChoose.png'}}"></image>
  10. </view>
  11. </swiper-item>
  12. </swiper>
  13. <image class="leftArrow" bindtap="prevImg" src="{{imgUrl+'/images/leftArrow.png'}}"></image>
  14. <image class="rightArrow" bindtap="nextImg" src="{{imgUrl+'/images/rightArrow.png'}}"></image>
  15. </view>
  16. <canvas wx:if="{{canvasShow}}" class="canvasDraw" canvas-id="myCanvas"></canvas>
  17. <view class="lookBigPic" bindtap="savePoster">
  18. <image class="lookBigIcon" src="{{imgUrl+'/images/lookbigIcon.png'}}"></image>
  19. <view class="lookBigText">查看大图</view>
  20. </view>
  21. <image class="selectPosterTip" src="{{imgUrl+'/images/selectPosterTip.png'}}"></image>
  22. <view class="operationFrame">
  23. <view class="operationGroup" style="margin-right:55rpx;" bindtap="saveImg">
  24. <image class="saveIcon" src="{{imgUrl+'/images/saveIcon.png'}}"></image>
  25. <view class="operationText">保存到手机</view>
  26. </view>
  27. <view class="operationGroup">
  28. <image class="saveIcon" src="{{imgUrl+'/images/shareIcon.png'}}"></image>
  29. <view class="operationText">分享给好友</view>
  30. <button class="shareBtn" open-type="share"></button>
  31. </view>
  32. </view>
  33. </view>
  34. <tabBar></tabBar>
  35. </view>