-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforPc.html
111 lines (93 loc) · 3.19 KB
/
forPc.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/padrao.css">
<link rel="stylesheet" href="fontawesome/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<div id="video-container">
<div id="video-wrapper">
<video id="video-player" muted autoplay loop playsinline>
<source id="video-source" src="" type="video/mp4">
</video>
<span id="prev-button" class="w3-display-left w3-button w3-blue"><i class="fa-solid fa-chevron-left w3-xxlarge"></i></span>
<span id="next-button" class="w3-display-right w3-button w3-blue"><i class="fa-solid fa-chevron-right w3-xxlarge"></i></span>
</div>
</div>
<script>
$(document).ready(function () {
const videoPlayer = $('#video-player')[0];
const videoSource = $('#video-source');
const videos = [
"1.mp4",
"2.mp4",
"3.mp4",
// Adicione mais vídeos conforme necessário
];
let currentVideoIndex = 0;
function playVideo(index) {
const videoPath = videos[index];
videoSource.attr('src', videoPath);
videoPlayer.load();
videoPlayer.play();
}
playVideo(currentVideoIndex);
$('#prev-button').on('click', function () {
// Pausa o vídeo atual
videoPlayer.pause();
// Move para o vídeo anterior (circulando se necessário)
currentVideoIndex = (currentVideoIndex - 1 + videos.length) % videos.length;
// Inicia o vídeo anterior com efeito de slide para a esquerda
$('#video-wrapper').addClass('slide-right');
setTimeout(function () {
$('#video-wrapper').removeClass('slide-right');
playVideo(currentVideoIndex);
}, 500); // Duração da animação em milissegundos (0,5 segundos)
});
$('#next-button').on('click', function () {
// Pausa o vídeo atual
videoPlayer.pause();
// Move para o próximo vídeo (circulando se necessário)
currentVideoIndex = (currentVideoIndex + 1) % videos.length;
// Inicia o próximo vídeo com efeito de slide para a direita
$('#video-wrapper').addClass('slide-left');
setTimeout(function () {
$('#video-wrapper').removeClass('slide-left');
playVideo(currentVideoIndex);
}, 500); // Duração da animação em milissegundos (0,5 segundos)
});
});
</script>
<style>
#video-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
background-color: black; /* Cor de fundo do vídeo */
display: flex;
justify-content: center;
align-items: center;
}
#video-wrapper {
max-width: 100%;
max-height: 100%;
overflow: hidden;
white-space: nowrap;
}
#video-player {
display: inline-block;
vertical-align: middle;
width: 100%;
height: 100%;
transition: transform 0.5s ease-in-out; /* Adiciona efeito de slide */
}
/* Aplica a animação de slide */
#video-wrapper.slide-left #video-player {
transform: translateX(-100%);
}
#video-wrapper.slide-right #video-player {
transform: translateX(100%);
}
</style>