mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-05 19:41:39 +08:00
增加禁止快进功能
This commit is contained in:
parent
a571705e6a
commit
5169e0cc32
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user