24 lines
731 B
Plaintext
24 lines
731 B
Plaintext
<!--pages/API/load-font-face/load-font-face.wxml-->
|
|
<import src="../../common/head.wxml" />
|
|
<import src="../../common/foot.wxml" />
|
|
|
|
<view class="container">
|
|
<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>
|
|
|