-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.19 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport'
content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0'>
<meta http-equiv='X-UA-Compatible' content='ie=edge'>
<title>Get dominant color</title>
<link rel='stylesheet' href='css/index.css'>
</head>
<body>
<header>
<ul>
<li class='active'><a href='/dominant-color/'>Home</a></li>
<li><a href='/dominant-color/documentation.html'>Documentation</a></li>
<li>
<a href='#'>Examples</a>
<ul>
<li><a href='/dominant-color/examples/palette'>Palette</a></li>
<li><a href='/dominant-color/examples/music-app'>Music app</a></li>
</ul>
</li>
<li><a href='https://github.com/rtcoder/dominant-color/releases' target='_blank'>Download</a></li>
</ul>
</header>
<div class='container'>
<h2>Get dominant color of image</h2>
<p>Upload image below and check the dominant color of image</p>
<label id='drop-area'>
Drop images here or select from your device
<input type='file' multiple accept='image/*'>
</label>
<div id='gallery'></div>
</div>
<script type='module' src='js/index.js'></script>
</body>
</html>