wxml-to-canvas.wxml 572 B

123456789101112
  1. <view class="page">
  2. <view>WXML</view>
  3. <scroll-view scroll-y scroll-x class="scroll-view-wxml" >{{wxmlTemplate}}</scroll-view>
  4. <button type="primary" bindtap="renderToCanvas">渲染到canvas</button>
  5. <button type="primary" bindtap="extraImage">导出图片</button>
  6. <view style="margin: 5px">canvas</view>
  7. <view class="center">
  8. <wxml-to-canvas class="widget" height="200" width="200" ></wxml-to-canvas>
  9. </view>
  10. <view style="margin: 5px">图片</view>
  11. <image wx:id="{{src}}" src="{{src}}" style="width: {{width}}px; height: {{height}}px"></image>
  12. </view>