-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 767 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 767 Bytes
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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Video Switcher</title>
<link rel='stylesheet' href='video-switcher.css' />
<meta charset='utf-8' />
</head>
<body>
<main>
<h1>Video Switcher</h1>
<div id='video-switcher-wrap'>
<video src='video.mp4' playsinline></video>
<ul id='video-controls'>
<li data-video-action='play'>▶</li>
</ul>
<div id='camera-controls'>
<canvas data-camera-index=0></canvas>
<canvas data-camera-index=1></canvas>
<canvas data-camera-index=2></canvas>
<canvas data-camera-index=3></canvas>
</div>
</div>
</main>
<script type='text/javascript' src='video-switcher.js'></script>
</body>
</html>