-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheasing.html
46 lines (43 loc) · 951 Bytes
/
easing.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
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Time-shift Zoom-Rotator :: Jammin' end zoomer redone.</title>
<style type="text/css">
body
{
margin:0;
padding: 0;
background: #111;
color: #88c;
padding: 1em 2ex;
}
#wrap
{
width: 512px;
margin: 20px auto;
}
</style>
<script type="text/javascript" src="script/jquery-1.6.2.min.js">
</script>
<script type="text/javascript" src="script/Class.js">
</script>
<script type="text/javascript" src="script/Interpolator.js">
</script>
<script type="text/javascript" src="script/easing.js">
</script>
</head>
<body>
<canvas class="easing" data-easing="linear">
</canvas>
<canvas class="easing" data-easing="easeInQuad">
</canvas>
<canvas class="easing" data-easing="easeOutQuad">
</canvas>
<canvas class="easing" data-easing="easeInOutCubic">
</canvas>
</p>
</div>
</body>
</html>