-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
</head>
<style type="text/css">
body {
padding: 0;
margin: 0;
}
canvas {
display: block;
}
</style>
<body onload="main()">
<canvas id="canvas"></canvas>
<div style="display:none;">
<!-- <img id="source" src="./img/rhino.jpg" width="300" height="227"> -->
<!-- <img id="source" src="./img/dot.jpg" width="40" height="40"> -->
<!-- <img id="source" src="./img/ellipse.jpg" width="40" height="40"> -->
<!-- <img id="source" src="./img/red.jpg" width="40" height="40"> -->
<!-- <img id="source" src="./img/red.png" width="40" height="40"> -->
<!-- <img id="source" src="./img/red_smooth.png" width="40" height="40"> -->
<!-- <img id="source" src="./img/diagonal-inverse.png" width="40" height="40"> -->
<img id="source" src="./img/shape.png" width="40" height="40">
<!-- <img id="source" src="./img/gradient1.jpg" width="40" height="40"> -->
<!-- <img id="source" src="./img/gradient2.jpg" width="40" height="40"> -->
</div>
<div id="plot"></div>
<script type="text/javascript" src="./src/img2signal.js"></script>
</body>
</html>