-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
62 lines (53 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>踩地雷遊戲</title>
<style>
body {
margin: 0% 0% 0% 0%;
text-align: center;
}
nav {
background: #00FFCC;
font-size: 48px;
text-align: center;
}
button {
width: 35px;
height: 35px;
margin: 0% 0% 0% 0%;
}
img {
width: 35px;
height: 35px;
margin: -18% 0% 0% -37%;
}
#landmineArea {
margin: 3% 20% 0% 20%;
}
span {
font-size: 36px;
}
</style>
<script src="js/function.js"></script>
<script src='js/jquery-3.2.1.min.js'></script>
</head>
<body>
<nav>踩地雷遊戲</nav><br/><br/>
<div style='text-align:center'>
<img src='img/landmine.jpg' style='margin:0 0 0 0'></img><span id='landmineNum' style='color:red'>99</span>
<img src='img/clock.png'></img><span id='time' >0</span>
</div>
<div>
<button onclick='changeMouse()' style='width:7%;font-size:24px' id='btn1'>換旗子</button>
</div>
<div id='landmineArea'>
<script>
init();
</script>
</div>
</body>
</html>