赞
踩
最近在工作中有个政务大屏用到了视频播放;
技术栈是Vue2、Element UI;
要实现的功能是:使用按钮实现视频的播放、停止、停止后继续播放、播放完成后重新播放功能
具体可以按照以下步骤进行操作:
import { Button } from 'element-ui';
playAudio()
函数。Audio
API来控制音频的播放、暂停、继续播放和重新播放功能。可以通过new Audio('audio_file_url')
方法创建一个新的音频对象,通过设置相关的属性和调用对应的方法来控制音频的状态和行为。Audio
对象的currentTime
属性中即可。以下实例为关键代码,演示了如何在Vue Element UI中实现播放、暂停、继续播放和重新播放功能:
<template>
<div>
<el-button @click="playAudio">播放</el-button>
<el-button @click="pauseAudio">暂停</el-button>
<el-button @click="resumeAudio">继续播放</el-button>
<el-button @click="restartAudio">重新播放</el-button>
</div>
</template>
<script>
import { Button } from 'element-ui';
export default {
components: {
Button,
},
data() {
return {
audio: null, // 当前音频对象
isPlaying: false, // 音频是否正在播放
currentTime: 0, // 当前播放时间
};
},
methods: {
playAudio() {
if (!this.audio) {
this.audio = new Audio('audio_file_url');
this.audio.addEventListener('ended', () => {
// 播放完成后重新播放
this.currentTime = 0;
this.isPlaying = false;
this.audio.currentTime = 0;
});
}
this.audio.play();
this.isPlaying = true;
},
pauseAudio() {
if (this.audio) {
this.audio.pause();
this.isPlaying = false;
}
},
resumeAudio() {
if (this.audio && !this.isPlaying) {
this.audio.currentTime = this.currentTime;
this.audio.play();
this.isPlaying = true;
}
},
restartAudio() {
if (this.audio) {
this.audio.currentTime = 0;
this.audio.play();
this.isPlaying = true;
}
},
},
};
</script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。