-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 937 Bytes
/
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
33
34
35
36
37
38
39
<html>
<head>
<title>Canvas Warping</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0;
}
.bar {
position: absolute;
bottom: 10px;
right: 10px;
}
</style>
</head>
<body>
<canvas width="640" height="480">
Why you no have canvas?
</canvas>
<div class="bar">
Function:
<a href="#" data-fn="noise">noise</a> |
<a href="#" data-fn="turbulence">turbulence</a> |
<a href="#" data-fn="ridged">ridged</a> |
<a href="#" data-fn="fbm1">fbm1</a> |
<a href="#" data-fn="fbm2">fbm2</a> |
<a href="#" data-fn="fbm3">fbm3</a> |
<a href="#" data-fn="fbmAdH">fbmAdH</a> |
<a href="#" data-fn="fbmPPE">fbmPPE</a>
Resize: <input id="resize" type="checkbox">
Zoom: <input id="zoom" type="range" min="1" max="20" step="1" value="7">
</div>
<script type="text/javascript" src="noise.js"></script>
<script type="text/javascript" src="draw.js"></script>
</body>
</html>