swan.createAnimationVideo

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

方法参数

String animationVideoId

返回值

AnimationVideo

示例

在开发者工具中预览效果

扫码体验

swan.createAnimationVideo - 图1请使用百度APP扫码

图片示例

swan.createAnimationVideo - 图2

swan.createAnimationVideo - 图3

swan.createAnimationVideo - 图4

代码示例

  1. <view class="wrap">
  2. <animation-video
  3. id ="myAnimationVideo"
  4. path = "{{path}}"
  5. bindstarted = "started"
  6. bindended = "ended"
  7. resource-width="800"
  8. resource-height="400"
  9. canvas-style ="width: 100%"
  10. >
  11. </animation-video>
  12. </view>
  1. Page({
  2. data: {
  3. path: 'https://efe-h2.cdn.bcebos.com/ceug/resource/res/2020-1/1577964961344/003e2f0dcd81.mp4'
  4. },
  5. onLoad() {
  6. // 创建动画组件实例
  7. this.myAnimationVideo = swan.createAnimationVideo('myAnimationVideo');
  8. }
  9. });