swan.createAnimationVideo

解释: 创建并返回 animation-video 上下文animationVideo对象。通过 animationVideoId 跟一个 animation-video 组件绑定,通过它可以操作一个 animation-video 组件。
Web 态说明:详见 animation-video 组件 Web 态说明。

方法参数

String animationVideoId

返回值

AnimationVideo

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

swan.createAnimationVideo - 图2

代码示例

  • SWAN
  • JS
  • CSS
  1. <view class="wrap">
  2. <animation-video
  3. id="myAnimationVideo"
  4. path="{{path}}"
  5. loop="{{loop}}"
  6. resource-width="800"
  7. resource-height="400"
  8. canvas-style="width:200px;height:200px"
  9. autoplay="{{autoplay}}"
  10. bindstarted="started"
  11. bindended="ended">
  12. </animation-video>
  13. </view>