mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-06 03:57:55 +08:00
增加禁止快进功能
This commit is contained in:
parent
a571705e6a
commit
5169e0cc32
@ -5,6 +5,11 @@
|
|||||||
export default {
|
export default {
|
||||||
name: 'VueAliplayerV2',
|
name: 'VueAliplayerV2',
|
||||||
props: {
|
props: {
|
||||||
|
forbidFastForward:{
|
||||||
|
required: false,
|
||||||
|
type: [Boolean],
|
||||||
|
default: false
|
||||||
|
},
|
||||||
options: { //配置项
|
options: { //配置项
|
||||||
required: false,
|
required: false,
|
||||||
type: [Object],
|
type: [Object],
|
||||||
@ -144,7 +149,9 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handlerFastForward(){
|
||||||
|
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* 创建script和css
|
* 创建script和css
|
||||||
* 加载Alipayer的SDK
|
* 加载Alipayer的SDK
|
||||||
@ -205,6 +212,29 @@ export default {
|
|||||||
this.$emit(this.events[ev],e);
|
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方法取消订阅
|
//通过播放器实例的off方法取消订阅
|
||||||
//player.off('ready',handleReady);
|
//player.off('ready',handleReady);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user