1 回答
TA贡献1790条经验 获得超9个赞
这是一个可行的解决方案(更新视频 URL 后):
<template>
<div>
<div v-for="video in videos" :key="video.ref">
<video :ref="video.ref" :src="video.url" type="video/mp4" @click="onClick(video)"></video>
</div>
</div>
</template>
<script>
export default {
computed: {
videos() {
return [
{ url: 'https://path/to/your/video.mp4', ref: 'video0' },
{ url: 'https://path/to/your/video.mp4', ref: 'video1' },
{ url: 'https://path/to/your/video.mp4', ref: 'video2' },
];
},
},
methods: {
onClick({ ref }) {
// Loop over all videos
this.videos.forEach((video) => {
// Get the DOM element for this video
const $video = this.$refs[video.ref][0];
// Play the video that the user clicked
if (video.ref === ref) $video.play();
// Pause all other videos
else $video.pause();
});
},
},
};
</script>
请注意,这里我将其定义videos为计算属性。它可能是你的情况的一个支柱。此示例为每个视频分配一个ref字符串,以便稍后可以在处理程序中直接操作该视频onClick。
添加回答
举报