加师范例子

This commit is contained in:
xueyuan 2022-05-11 21:47:19 +08:00
parent 5169e0cc32
commit 444820e168
2 changed files with 15 additions and 1 deletions

View File

@ -1,7 +1,9 @@
<template>
<div id="app">
<template v-if="!isShowMultiple && show">
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options"/>
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options"
:forbidFastForward="forbidFastForward"
/>
</template>
<div v-if="isShowMultiple && show" class="show-multiple">
<template v-for="x in 5">
@ -11,11 +13,13 @@
<p class="remove-text" v-if="!show">播放器已销毁!</p>
<div class="player-btns">
<template v-if="!isShowMultiple && show">
<span @click="play()">播放</span>
<span @click="pause()">暂停</span>
<span @click="replay()">重播</span>
<span @click="getCurrentTime()">播放时刻</span>
<span @click="getStatus()">获取播放器状态</span>
<span @click="handlerForbidFastForward()">禁止快进</span>
</template>
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
@ -101,6 +105,7 @@ export default {
source: '//player.alicdn.com/video/aliyunmedia.mp4',
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
show: true,
forbidFastForward:false,
isShowMultiple: false,
}
},
@ -118,6 +123,11 @@ export default {
replay(){
this.$refs.VueAliplayerV2.replay();
},
handlerForbidFastForward(){
this.forbidFastForward = true
},
getCurrentTime(){
// this.$refs.VueAliplayerV2.getCurrentTime();

View File

@ -129,6 +129,10 @@ export default {
source(){ //
this.init();
},
forbidFastForward(){
this.init();
},
options:{ //,
handler(){