From 5169e0cc32fe4cb6f5aefec6b7d97e0253acd14e Mon Sep 17 00:00:00 2001 From: xueyuan Date: Wed, 11 May 2022 21:36:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=A6=81=E6=AD=A2=E5=BF=AB?= =?UTF-8?q?=E8=BF=9B=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/AliplayerV2/index.vue | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/packages/AliplayerV2/index.vue b/packages/AliplayerV2/index.vue index a8754cc..cde1e02 100644 --- a/packages/AliplayerV2/index.vue +++ b/packages/AliplayerV2/index.vue @@ -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); }