<view class="wrap"><view class="card-area"><view class="top-description border-bottom"><view>功能</view><view>play pause seek</view></view><view class="video-area"><animation-videoid="myAnimationVideo"path="{{leftAlphaSrcPath}}"loop="{{loop}}"resource-width="800"resource-height="400"canvas-style="width:200px;height:200px"autoplay="{{autoplay}}"bindstarted="onStarted"bindended="onEnded"></animation-video></view><button bindtap="play">播放</button><button bindtap="pause">暂停</button><button bindtap="seek">跳转到动画2S处</button></view></view>
Page({onLoad() {this.createCtx();},createCtx() {this.myAnimationVideo = wx.createAnimationVideoContext('my-video');},play() {this.myAnimationVideo?.play();},pause() {this.myAnimationVideo?.pause();},seek() {this.myAnimationVideo?.seek(2);},})
文档反馈