-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 1.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="src/styles/styles.css">
<title>Document</title>
</head>
<body>
<!--Template for the video on the feed-->
<section class="feed-element">
<h1 id="choose-text">Choose</h1>
<a id="choice1" onclick="choice(1)" class="choice">
<div class="choice-button">
<div class="circle one"></div>
<div class="circle two"></div>
<div class="circle three"></div>
</div>
</a>
<a id="choice2" onclick="choice(2)" class="choice">
<div class="choice-button">
<div class="circle one"></div>
<div class="circle two"></div>
<div class="circle three"></div>
</div>
</a>
<video id="video-player" class="video-player" src="src/videos/main.mp4" muted></video>
<div id="buttons-menu" class="buttons-menu">
<button onClick="start()">Play</button>
<button onClick="pause()">Pause</button>
<button onClick="back()">Back</button>
<button onClick="backChoice()">Choice</button>
</div>
</section>
<!--Scripts are here-->
<script src="src/scripts/main.js"></script>
</body>
</html>