VideoContext.seek
解释:跳转到指定位置(单位:s)
方法参数
Number position
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="wrap">
<video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
<button type="primary" bindtap="seek">seek</button>
</view>
- 在 js 文件中
Page({
data: { },
onLoad() {
const videoContext = swan.createVideoContext('myVideo');
this.videoContext = videoContext;
this.videoContext.play();
},
seek() {
this.videoContext.seek(180);
}
});