-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontrast.html
22 lines (22 loc) · 1.09 KB
/
contrast.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<meta name="copyright" content="Copyright © 2021/10/09- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Contrast </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="controlPanel">
maxWidthHeight:<input id="maxWidthHeightRange" type="range" min="16" max="2048" step="1" value="640">:<input type="text" id="maxWidthHeightText" size="5">
amount:<input id="amountRange" type="range" min="0" max="2.0" step="0.1" value="1">:<input type="text" id="amountText" size="4">
</div> <!-- controlPanel -->
<canvas id="srcCanvas" class="borderRed" width=200 height=200> srcCanvas </canvas>
<canvas id="dstCanvas" class="borderBlue" width=200 height=200> dstCanvas </canvas>
</div> <!-- container -->
<script type="text/javascript" src="lib/drop.js"> </script>
<script type="text/javascript" src="lib/bind.js"> </script>
<script type="text/javascript" src="lib/canvas.js"> </script>
<script type="text/javascript" src="contrast.js"> </script>
</body>
</html>