增加禁止快进功能

This commit is contained in:
xueyuan 2022-05-11 21:36:10 +08:00
parent a571705e6a
commit 5169e0cc32

View File

@ -5,6 +5,11 @@
export default {
name: 'VueAliplayerV2',
props: {
forbidFastForward:{
required: false,
type: [Boolean],
default: false
},
options: { //
required: false,
type: [Object],
@ -144,7 +149,9 @@ export default {
});
},
methods: {
handlerFastForward(){
},
/**
* 创建script和css
* 加载Alipayer的SDK
@ -205,6 +212,29 @@ export default {
this.$emit(this.events[ev],e);
});
}
if(this.forbidFastForward){
let last = 0,max_time=0;
this.player.on('timeupdate',function(){
let current = this.getCurrentTime();
if(current - last > 2) {
this.seek(last);
} else {
last = current;
if(last >= max_time){
max_time=last;
}
}
})
}
//off
//player.off('ready',handleReady);
}