-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtimeline.html
41 lines (37 loc) · 1.69 KB
/
timeline.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
<!DOCTYPE html>
<html>
<head>
<title>🎨 Colors of movies 🎬</title>
<meta charset="utf-8" />
<link href="dist/timeline.css" rel="stylesheet" />
</style>
</head>
<body>
<div class="spinner"></div>
<div class="title-container"><h1 class="title">Colors of movies</h1></div>
<div class="movie-selector">Select <select class="movies">
<option value="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4">Big Buck Bunny</option>
<option value="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4">Blender Open Movie from 2006</option>
<option value="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/Sintel.mp4">Sintel</option>
<option value="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/TearsOfSteel.mp4">Tears of Steel</option>
</select> or upload a movie <input type="file" class="upload-file" autocomplete="off" /></div>
<div class="progress"></div>
<div class="timeline timeline_type_average">
<div class="timeline__label">Average:</div>
<canvas class="timeline__colors"></canvas>
</div>
<!--<div class="timeline timeline_type_average-sqrt">
<div class="timeline__label">Average sqrt:</div>
<canvas class="timeline__colors"></canvas>
</div>-->
<div class="timeline timeline_type_dominant">
<div class="timeline__label">Dominant:</div>
<canvas class="timeline__colors"></canvas>
</div>
<div class="demo">
<div class="radial-demo"></div><div class="conic-demo"></div>
</div>
<video crossorigin="anonymous" src="about:blank"></video>
<script src="dist/timeline.js"></script>
</body>
</html>