-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.34 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Color Highlighter</title>
<link rel="stylesheet" href="index.css" type="text/css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="jquery.mobile.custom.min.js"></script>
<script type="text/javascript" src="index.js"></script>
<style type="text/css">
#imageURL {
width: 25%;
}
input {
height: 32px;
box-sizing: border-box;
font-family: sans-serif;
font-size: 14px;
}
form {
margin: 0;
width: 100%;
height: 32px;
}
html, body {
font-family: sans-serif;
font-size: 14px;
margin: 0;
}
</style>
</head>
<body>
<form>
<input id="imageURL" name="imageURL" placeholder="Enter the URL of a image to load">
<label>Red:</label>
<input type="text" size="4" placeholder="Red" id="red">
<label>Green:</label>
<input type="text" size="4" placeholder="Green" id="green">
<label>Blue:</label>
<input type="text" size="4" placeholder="Blue" id="blue">
<label>Threshold (%):</label>
<input type="text" size="4" placeholder="Threshold" id="thr" value="5">
<label>Zoom (%):</label>
<input type="text" size="4" placeholder="Zoom" id="zoom" value="100">
</form>
<div>
<canvas id="arena" title="Click anywhere on the image to highlight a color"></canvas>
</div>
</body>
</html>