resizable.wxml 933 B

1234567891011121314151617181920
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <wxs src="./resizable.wxs" module="resizable" />
  4. <view class="container page" data-weui-theme="{{theme}}">
  5. <template is="head" data="{{title: '屏幕旋转'}}"/>
  6. <view class="page-body">
  7. <view class="page-section">
  8. <view style="text-align:center">
  9. <!-- 当前屏幕状态:{{resizable.renderResizable(status)}} -->
  10. 旋转屏幕
  11. </view>
  12. <image src="http://mmbiz.qpic.cn/sz_mmbiz_png/GEWVeJPFkSHALb0g5rCc4Jf5IqDfdwhWJ43I1IvriaV5uFr9fLAuv3uxHR7DQstbIxhNXFoQEcxGzWwzQUDBd6Q/0?wx_fmt=png" mode="aspectFit" style="width: 100%"></image>
  13. <!-- <button type="primary" data-status="unlock" bind:tap="handleStatusChange">打开屏幕旋转</button>
  14. <button type="primary" data-status="lock" bind:tap="handleStatusChange">锁定屏幕</button> -->
  15. </view>
  16. </view>
  17. <template is="foot" />
  18. </view>