-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontrastasynchrony.html
34 lines (34 loc) · 1.54 KB
/
contrastasynchrony.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
<html>
<head>
<meta name="copyright" content="Copyright © 2019/06/07- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Contrast Asynchrony </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="controlPanel">
<div style="float:left">
width:<input id="widthRange" type="range" min="16" max="1280" step="1" value="600">
:<input type="text" id="widthText" size="5">
<br />
height:<input id="heightRange" type="range" min="16" max="1080" step="1" value="400">
:<input type="text" id="heightText" size="5">
</div>
<div>
period:<input id="periodRange" type="range" min="0.5" max="8" step="0.5" value="2">
:<input type="text" id="periodText" size="5">
<br />
debug 1:<input type="checkbox" id="debug1Checkbox" /> 2:<input type="checkbox" id="debug2Checkbox" /> 3:<input type="checkbox" id="debug3Checkbox" />
</div>
</div> <!-- controlPanel -->
<div style="clear:both">
<canvas id="canvas" width=200 height=200> srcCanvas </canvas>
<video id="video" width=200 height=200 src="" muted autoplay style="display:none"> </video>
</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="lib/testcard.js"> </script>
<script type="text/javascript" src="contrastasynchrony.js"> </script>
</body>
</html>