26 lines
689 B
Plaintext
26 lines
689 B
Plaintext
<!--pages/preview/index.wxml-->
|
|
<view class="flex flex-center">
|
|
<view style="height: 80vh; width: 100vw;" class="flex flex-center">
|
|
|
|
<movable-area style="width: 100%; height: 100%;">
|
|
|
|
<movable-view
|
|
direction="all"
|
|
scale="{{true}}"
|
|
min-scale="0.5"
|
|
max-scale="5"
|
|
scale-value="{{scale}}"
|
|
style="width: 100%; height: 100%; display:flex; align-items:center; justify-content:center;"
|
|
>
|
|
<image
|
|
src="{{url}}"
|
|
style="width: 100%; height: 100%;"
|
|
mode="aspectFit"
|
|
show-menu-by-longpress
|
|
></image>
|
|
</movable-view>
|
|
|
|
</movable-area>
|
|
|
|
</view>
|
|
</view> |