123456789101112131415161718192021 |
- <import src="../../../common/head.wxml" />
- <import src="../../../common/foot.wxml" />
- <view class="container page" data-weui-theme="{{theme}}">
- <template is="head" data="{{title: 'loadFontFace'}}"/>
- <view class="page-body">
- <view class="page-section">
- <view class="page-body-info display-area {{ loaded ? 'font-loaded' : '' }}">
- <text wx:if="{{!loaded}}">Load {{ fontFamily }}</text>
- <text wx:else>{{ fontFamily }} is loaded</text>
- </view>
- <view class="btn-area">
- <button type="primary" bindtap="loadFontFace">加载字体</button>
- <button type="default" bindtap="clear">清除</button>
- </view>
- </view>
- </view>
- <template is="foot" />
- </view>
|