-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.77 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
<!DOCTYPE html>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Alternator with Comments</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="video-container">
<div class="video-wrapper">
<label for="video1">Source</label>
<video id="video1" controls></video>
</div>
<div class="video-wrapper">
<label for="video2">Target</label>
<video id="video2" controls></video>
</div>
</div>
<div class="controls">
<input type="file" id="upload1" accept="video/*">
<input type="file" id="upload2" accept="video/*">
<label for="intervalInput">Alternating Interval (seconds): </label>
<input type="number" id="intervalInput" value="15" min="1">
<button id="startButton">Start Alternating</button>
</div>
<div class="comment-section">
<div class="comment-input">
<input type="text" id="commentInput" placeholder="Enter your comment">
<button id="commentButton">Add Comment</button>
</div>
<ul id="commentList"></ul>
<!-- Download Comments Button -->
<button id="downloadCommentsButton">Download Comments</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>