-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
89 lines (79 loc) · 2.43 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
$(document).ready(function() {
const players = Array.from(document.querySelectorAll('.plyr')).map(p => new Plyr(p));
$(window).on('load', function() {
$('#loader').fadeOut();
});
players.forEach(player => {
const videoElement = player.elements.video;
if (videoElement) {
videoElement.addEventListener('click', () => {
if (player.paused) {
player.play();
} else {
player.pause();
}
});
} else {
console.error('Video element not found for player', player);
}
player.on('play', () => {
players.forEach(otherPlayer => {
if (otherPlayer !== player) {
otherPlayer.pause();
}
});
});
});
function adjustCenteredVideo() {
$('.owl-carousel .item').each(function() {
const videoElement = $(this).find('video')[0];
if (videoElement) {
if ($(this).hasClass('active')) {
$(this).find('video').css({
transform: 'scale(1.5)',
transition: 'transform 0.3s ease',
});
} else {
$(this).find('video').css({
transform: 'scale(1)',
transition: 'transform 0.3s ease',
});
}
}
});
}
adjustCenteredVideo();
var owl = $('.owl-carousel');
owl.owlCarousel({
loop: true,
margin: 10,
nav: false,
responsive: {
0: {
items: 1
},
768: {
items: 2
},
1024: {
items: 3
}
}
});
owl.on('changed.owl.carousel', function(event) {
players.forEach(player => player.pause());
setTimeout(() => {
adjustCenteredVideo();
const playersInView = Array.from(document.querySelectorAll('.owl-item.active .plyr')).map(p => new Plyr(p));
playersInView.forEach(player => {
player.on('play', () => {
playersInView.forEach(otherPlayer => {
if (otherPlayer !== player) {
otherPlayer.pause();
}
});
});
});
}, 300);
});
});