-
Notifications
You must be signed in to change notification settings - Fork 0
/
Episode2.html
45 lines (44 loc) · 1.98 KB
/
Episode2.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Episode2.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Episode2</title>
</head>
<body>
<header>
<h3 class="fs-1 fw-bold" data-aos="zoom-out-right"><span class="lop text-danger">ACI </span>MIXX</h3>
<div class="toggle" data-aos="zoom-out-left"><a href="index.html"><img src="ToyStory/toggle.png" alt=""></a></div>
</header>
<div class="banner">
<div class="content">
<h1 class="ji text-white" data-aos="fade-right">The <span class="ko text-danger">Confession</span></h1>
<h2 class=" text-white fs-3" data-aos="fade-right">Episode 2</h2>
<p data-aos="zoom-in-up">
Within the silence of 'The Confession': A Journey Through Love's Labyrinth, where confessions remain unvoiced and hearts undisclosed.
</p>
<a href="https://youtu.be/FiaooIKHlZw?si=q4PIdyJZjT2gUFio" class="play" data-aos="zoom-out-up" onclick="toggle();"><img src="ToyStory/play.png" alt="">watch now</a>
</div>
</div>
<div class="trailer">
<video src="" controls="true"></video>
<img src="ToyStory/close.png" alt="" class="close" onclick="toggle();">
</div>
<script>
function toggle(){
var trailer=document.querySelector('.trailer');
let video=document.querySelector('.video');
trailer.classList.toggle('active');
video.currentTime = 0;
video.pause();
}
</script>
</body>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</html>