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
5169e0cc32
commit
444820e168
@ -1,7 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<template v-if="!isShowMultiple && show">
|
<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>
|
</template>
|
||||||
<div v-if="isShowMultiple && show" class="show-multiple">
|
<div v-if="isShowMultiple && show" class="show-multiple">
|
||||||
<template v-for="x in 5">
|
<template v-for="x in 5">
|
||||||
@ -11,11 +13,13 @@
|
|||||||
<p class="remove-text" v-if="!show">播放器已销毁!</p>
|
<p class="remove-text" v-if="!show">播放器已销毁!</p>
|
||||||
<div class="player-btns">
|
<div class="player-btns">
|
||||||
<template v-if="!isShowMultiple && show">
|
<template v-if="!isShowMultiple && show">
|
||||||
|
|
||||||
<span @click="play()">播放</span>
|
<span @click="play()">播放</span>
|
||||||
<span @click="pause()">暂停</span>
|
<span @click="pause()">暂停</span>
|
||||||
<span @click="replay()">重播</span>
|
<span @click="replay()">重播</span>
|
||||||
<span @click="getCurrentTime()">播放时刻</span>
|
<span @click="getCurrentTime()">播放时刻</span>
|
||||||
<span @click="getStatus()">获取播放器状态</span>
|
<span @click="getStatus()">获取播放器状态</span>
|
||||||
|
<span @click="handlerForbidFastForward()">禁止快进</span>
|
||||||
</template>
|
</template>
|
||||||
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
|
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
|
||||||
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
|
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
|
||||||
@ -101,6 +105,7 @@ export default {
|
|||||||
source: '//player.alicdn.com/video/aliyunmedia.mp4',
|
source: '//player.alicdn.com/video/aliyunmedia.mp4',
|
||||||
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
|
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
|
||||||
show: true,
|
show: true,
|
||||||
|
forbidFastForward:false,
|
||||||
isShowMultiple: false,
|
isShowMultiple: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -118,6 +123,11 @@ export default {
|
|||||||
replay(){
|
replay(){
|
||||||
this.$refs.VueAliplayerV2.replay();
|
this.$refs.VueAliplayerV2.replay();
|
||||||
},
|
},
|
||||||
|
handlerForbidFastForward(){
|
||||||
|
|
||||||
|
this.forbidFastForward = true
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
getCurrentTime(){
|
getCurrentTime(){
|
||||||
// this.$refs.VueAliplayerV2.getCurrentTime();
|
// this.$refs.VueAliplayerV2.getCurrentTime();
|
||||||
|
@ -129,6 +129,10 @@ export default {
|
|||||||
source(){ //监听播放源变化
|
source(){ //监听播放源变化
|
||||||
this.init();
|
this.init();
|
||||||
},
|
},
|
||||||
|
forbidFastForward(){
|
||||||
|
this.init();
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
options:{ //配置项是对象,只能深度监听
|
options:{ //配置项是对象,只能深度监听
|
||||||
handler(){
|
handler(){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user