animation.wxml 1017 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: '关键帧动画'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <view class="page-section-title">
  8. <text>关键帧动画\n\n从小程序基础库 2.9.0 开始支持一种更友好的动画创建方式,用于代替旧的 wx.createAnimation</text>
  9. </view>
  10. <view id="container1" style="{{containerStyle1}}">
  11. <button class="block1" style="width: 150px; margin: 50px auto;">示例按钮</button>
  12. <a class="block1" style="display: block; margin: 50px auto; width: 150px; text-align: center;">示例超链接</a>
  13. <text class="block1" style="display: block; margin: 50px auto; width: 150px; text-align: center;">示例文本</text>
  14. </view>
  15. <button disabled="{{!canIUse}}" type="primary" bindtap="change">开启动画</button>
  16. </view>
  17. </view>
  18. <template is="foot" />
  19. </view>