onReady(){
this.videoContext = uni.createVideoContext('myVideo');
}
onLoad(){
let that=this;
this.videoContext.seek(100);
setTimeout(()=>{
that.videoContext.seek(80);
//第一次seek
},1000);
setTimeout(()=>{
that.videoContext.seek(50);
//第二次seek
},2000);
}
2 个回复
DCloud_UNI_WZF
bug已确认,感谢反馈,已加分。
天生DR - 天生我材必有用
3.5.3+版本 已修复