load-font-face.wxml 717 B

123456789101112131415161718192021
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'loadFontFace'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <view class="page-body-info display-area {{ loaded ? 'font-loaded' : '' }}">
  8. <text wx:if="{{!loaded}}">Load {{ fontFamily }}</text>
  9. <text wx:else>{{ fontFamily }} is loaded</text>
  10. </view>
  11. <view class="btn-area">
  12. <button type="primary" bindtap="loadFontFace">加载字体</button>
  13. <button type="default" bindtap="clear">清除</button>
  14. </view>
  15. </view>
  16. </view>
  17. <template is="foot" />
  18. </view>