fullscreen.wxml 699 B

12345678910111213141516171819
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">WaterMark</view>
  4. <view class="page__desc">水印</view>
  5. </view>
  6. <view class="page__bd page__bd_spacing">
  7. <wux-button block type="light" bind:click="setProps1">普通水印</wux-button>
  8. <wux-button block type="light" bind:click="setProps2">多行文字水印</wux-button>
  9. <wux-button block type="light" bind:click="setProps3">图片水印</wux-button>
  10. </view>
  11. <wux-water-mark
  12. content="{{ content }}"
  13. image="{{ image }}"
  14. width="{{ width }}"
  15. height="{{ height }}"
  16. bind:load="onWaterMarkLoad"
  17. bind:error="onWaterMarkError"
  18. />
  19. </view>