-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
34 lines (34 loc) · 1.06 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
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sky Canvas on HTML5</title>
<meta name="author" content="neizod">
<link rel="stylesheet" href="style.css">
<script src="sky.js"></script>
<script src="controller.js"></script>
<script src="ezgl.js"></script>
<script src="stars.js"></script>
<script src="constal.js"></script>
<script src="altconstal.js"></script>
<script src="lines.js"></script>
<script src="others.js"></script>
</head>
<body onload="init();" onresize="tool.resizeHandler()" onkeypress="keyControl(event);">
<center>
<canvas
id="sky" width="1200" height="650"
style="background-color:gray"
onmousemove="mouse.absolutePosition(event);"
onmouseout="mouse.out();"
onmousedown="mouse.down(event);"
onmouseup="mouse.up(event);"
onclick="mouse.click();"
ondblclick="mouse.dblclick();"
oncontextmenu="return false;"
>
Sorry, your browser doesn't support HTML5.
</canvas>
</center>
</body>
</html>