Files
fitness-coach/miniprogram/components/gif-player/gif-player.wxml

9 lines
410 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="gif-player">
<canvas wx:if="{{!failed}}" type="2d" id="gifCanvas" class="canvas"></canvas>
<!-- 加载中提示GIF 下载/解码期间画布透明,海报透出,此提示告知用户动图正在准备 -->
<view wx:if="{{loading && !failed}}" class="gif-loading">
<view class="gif-loading__dot"></view>
<text class="gif-loading__txt">动图加载中…</text>
</view>
</view>