This repository was archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy path02-single-segment.html
More file actions
45 lines (39 loc) · 1.24 KB
/
02-single-segment.html
File metadata and controls
45 lines (39 loc) · 1.24 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Single Segment</title>
<link rel="stylesheet" href="../include/style.css">
</head>
<body>
<header>
Example from <a href="http://amzn.com/1430236655?tag=html5anim-20"><em>Foundation HTML5 Animation with JavaScript</em></a>
</header>
<canvas id="canvas" width="400" height="400"></canvas>
<aside>Press and drag slider handle with mouse.</aside>
<script src="../include/utils.js"></script>
<script src="./classes/segment.js"></script>
<script src="./classes/slider.js"></script>
<script>
window.onload = function () {
var canvas = document.getElementById('canvas'),
context = canvas.getContext('2d'),
segment = new Segment(100, 20),
slider = new Slider(-90, 90, 0);
segment.x = 100;
segment.y = 100;
slider.x = 300;
slider.y = 20;
slider.captureMouse(canvas);
slider.onchange = drawFrame;
function drawFrame () {
context.clearRect(0, 0, canvas.width, canvas.height);
segment.rotation = slider.value * Math.PI / 180;
segment.draw(context);
slider.draw(context);
}
drawFrame();
};
</script>
</body>
</html>