-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflipflop.html
23 lines (23 loc) · 1.11 KB
/
flipflop.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta name="copyright" content="Copyright © 2021/10/16- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Flipflop Mirror </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">
vertical (flip):<input id="verticalCheckbox" type="checkbox" />
horizontal (flop):<input id="horizontalCheckbox" type="checkbox" />
</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="flipflop.js"> </script>
</body>
</html>