-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtinyHeart.html
More file actions
executable file
·53 lines (53 loc) · 1.69 KB
/
tinyHeart.html
File metadata and controls
executable file
·53 lines (53 loc) · 1.69 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
body {
padding-top: 10px;
}
.all_bg {
width: 800px;
height: 600px;
margin: 0 auto;
}
#allcanvas {
position: relative;
width: 800px;
height: 600px;
margin: 0;
}
#canvas1 {
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
}
#canvas2 {
position: absolute;
bottom: 0;
left: 0;
z-index: 0;
}
</style>
</head>
<body>
<div class="all_bg">
<div id="allcanvas">
<canvas id="canvas1" width="800" height="600"></canvas>
<canvas id="canvas2" width="800" height="600"></canvas>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/commonFunctions.js"></script>
<script type="text/javascript" src="js/background.js"></script>
<script type="text/javascript" src="js/ane.js"></script>
<script type="text/javascript" src="js/fruit.js"></script>
<script type="text/javascript" src="js/mom.js"></script>
<script type="text/javascript" src="js/collision.js"></script>
<script type="text/javascript" src="js/baby.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/wave.js"></script>
</body>
</html>