AnimationVideo.pause

解释: 暂停
Web 态说明:详见 animation-video 组件 Web 态说明。

方法参数

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

AnimationVideo.pause - 图2

代码示例

  • SWAN
  • JS
  • CSS
  1. <view class="wrap">
  2. <view class="card-area">
  3. <view class="video-area">
  4. <animation-video
  5. id="myAnimationVideo"
  6. path="{{path}}"
  7. loop="{{loop}}"
  8. resource-width="800"
  9. resource-height="400"
  10. canvas-style="width:200px;height:200px"
  11. autoplay="{{autoplay}}"
  12. bindstarted="started"
  13. bindended="ended"
  14. ></animation-video>
  15. </view>
  16. <button class="btn" type="primary" bindtap="changeStatus">{{status}}动画</button>
  17. </view>
  18. </view>