我创建了一个由多个图像和视频组成的滑块。我使用了Swiper和Clappr(视频播放器),但是clappr不能用于多个视频。
我试图通过一个周期(下面的代码)对其进行修复,但即使如此,该脚本仅适用于第一个视频。
Vue v.3.1,Clappr v.0.3,Swiper v.4.5。
<section class="content__slider swiper-container"
v-if="project_data && project_data.length">
<ul class="swiper-wrapper">
<li v-for="(object, index) in project_data" :key="index"
class="content-item swiper-slide">
<!-- it'll be show, if obj type is images -->
<v-lazy-image v-if="object.type === 'images'"
:src="object.data"
class="content-img"/>
<!-- it'll be show, if obj type is video -->
<div v-if="object.type === 'video'"
class="content-video"
:id="'container_' + index"></div>
</li>
</ul>
</section>
import axios from 'axios'
import Swiper from "swiper/dist/js/swiper.esm.bundle";
import VLazyImage from "v-lazy-image";
import Clappr from 'clappr'
import 'swiper/dist/css/swiper.min.css'
export default {
name: "Project",
data: () => ({
project_data: [], // data of project
project_images: [], // arr of images
project_videos: [], // arr of videos
}),
created() {
axios.get('/getWorks/' + this.$route.params.name)
.then(response => {
let arr = [];
this.project_images = response.data.work_images;
let images = response.data.work_images;
this.project_videos = response.data.work_videos;
let videos = response.data.work_videos;
for (let i = 0; i < images.length; i++) {
arr.push({"type": "images", "data": "/storage/" + images[i]});
}
for (let i = 0; i < videos.length; i++) {
arr.push({"type": "video", "data": "/storage/" + videos[i]});
}
this.project_data = arr;
})
.then(() => {
// init slider
new Swiper('.content__slider', {
mousewheel: true,
keyboard: true,
speed: 1200,
navigation: {
nextEl: '.content-arrow.swiper-button-next',
prevEl: '.content-arrow.swiper-button-prev',
},
pagination: {
el: '.content-pagination.swiper-pagination',
type: 'fraction',
},
breakpoints: {
959: {
zoom: {
maxRatio: 5,
toggle: true,
containerClass: '.content__slider',
zoomedSlideClass: '.content-item'
},
}
}
});
// init clappr (video player)
if ( document.querySelector('.content-video') ) {
for (let i = 0; i < this.project_videos.length; i++) {
new Clappr.Player({
source: '/storage/' + this.project_videos[i],
parentId: '#container_' + (this.project_images.length - i),
mute: true,
width: document.querySelector('.content-item').offsetWidth,
height: document.querySelector('.content-item').offsetHeight
});
}
}
});
}
}
它适用于数组中的第一个视频,但不适用于以下
答案 0 :(得分:0)
生活和学习,我没有注意到我的错误。
parentId: '#container_' + (this.project_images.length + i)
有必要进行总结。现在,它可以正常工作了
答案 1 :(得分:0)
您的问题是:
创建的挂钩在组件完成其DOM构建之前被触发,因此,从理论上讲,您将无法通过document.querySelector
查找任何元素。
为什么可以这样做?
由于您是在异步函数(来自axios的ajax调用)中运行此querySelector的,这意味着服务器响应您对/getWorks/
的调用所花费的时间,浏览器已完成创建DOM的操作。这纯粹是运气,不是您想做的。
解决方案为#1; 将创建的钩子更改为已安装的钩子。 –已安装是Vue用来告诉您DOM已构建并完成的钩子。
第二个问题是您正在使用v-if“隐藏”其他元素。 v-if从DOM中完全删除该元素。这使您的querySelector无法找到它并对其进行初始化。 (因为只有一个,所以这是您的第一个元素:
因此,该脚本仅适用于第一个视频。
解决方案#2 将v-if
更改为v-show
– v-show将元素保留在DOM中,但通过CSS将其隐藏。因此,可以通过querySelector对其进行访问。