15 lines
954 B
Plaintext
15 lines
954 B
Plaintext
<!-- components/poster/index.wxml -->
|
|
<view class="poster fixed {{isShow?'show':'hide'}}">
|
|
<view class="poster-bg absolute top-0 bottom-0 left-0 right-0" bindtap="hidePoster"></view>
|
|
<view class="poster-main poster-main-img absolute box-center-middle">
|
|
<canvas canvas-id='postercanvas' class='canvas absolute box-center-middle' style="width:{{canvasInfo.width}};height:{{canvasInfo.height}}"></canvas>
|
|
<view wx:if="{{showOptBtn}}" class="overflowhidden">
|
|
<scroll-view scroll-y="true" style="max-height:1000rpx;">
|
|
<image class="block wp100 ulib-r10" wx:if="{{tempPosterPath}}" src="{{tempPosterPath}}" mode="widthFix" catchtap="preview" />
|
|
</scroll-view>
|
|
</view>
|
|
<view class="mt40 fn-flex" wx:if="{{showOptBtn}}">
|
|
<button class="fn-flex-item btn-f9394d font-32 color-fff ulib-r750 text-center ml20 mr20" hover-class="btn-f9394d-hover" catchtap="saveToAblum">保存分享</button>
|
|
</view>
|
|
</view>
|
|
</view> |