-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
23 lines (23 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Get Average Color of Image</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<meta name="google-site-verification" content="ruPP7Z-1iMcsvrbicR-wNJ79VHatSn1JepKnsDgSDlw" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<body>
<h1>Get Average Color of Image</h1>
<p>Client-side JavaScript application to get the average color of an image. Drag and drop the files below.
<div id="target">
Drop images here (or click to upload)
<input type="file" id="upload" multiple />
</div>
<div id="images"></div>
<footer id="footer">
<iframe src="http://ghbtns.com/github-btn.html?user=matkl&repo=average-color&type=watch&count=true&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe>
</footer>
<script src="average-color.js"></script>
</body>
</html>