-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolorchecker.html
26 lines (26 loc) · 1.19 KB
/
colorchecker.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
<html>
<head>
<meta name="copyright" content="Copyright © 2019/02/23- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Color Checker </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="controlPanel">
width:<input id="widthRange" type="range" min="16" max="1920" step="1" value="800">
:<input type="text" id="widthText" size="5">
height:<input id="heightRange" type="range" min="16" max="1080" step="1" value="540">
:<input type="text" id="heightText" size="5">
border1:<input id="border1Range" type="range" min="0" max="100" step="1" value="30">
:<input type="text" id="border1Text" size="5">
border2:<input id="border2Range" type="range" min="0" max="100" step="1" value="20">
:<input type="text" id="border2Text" size="5">
</div> <!-- controlPanel -->
<canvas id="canvas" width=200 height=200> srcCanvas </canvas>
</div> <!-- container -->
<script type="text/javascript" src="lib/bind.js"> </script>
<script type="text/javascript" src="lib/canvas.js"> </script>
<script type="text/javascript" src="colorchecker.js"> </script>
</body>
</html>