-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (37 loc) · 1.07 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
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Canvas</title>
<style type="text/css">
html{
box-sizing:border-box;
}
body{
box-sizing:border-box;
background: #ccc;
margin: 0;
padding: 8px;
}
</style>
</head>
<body>
<!--
<canvas id="canvas1" width="462" height="496"></canvas>
<canvas id="canvas2" width="462" height="496"></canvas>
<br>
<canvas id="canvas3" width="496" height="462"></canvas>
<br>
<canvas id="canvas4" width="496" height="462"></canvas>
-->
<canvas id="canvas1"></canvas>
<canvas id="canvas2"></canvas>
<br>
<canvas id="canvas3"></canvas>
<br>
<canvas id="canvas4"></canvas>
<script type="text/javascript" src="js/jquery-1.11.2.js"></script>
<script type="text/javascript" src="js/basketball.js"></script>
<script type="text/javascript" src="js/example.js"></script>
</body>
</html>