-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.68 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.68 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="js/cade_game.js"></script>
<link rel="stylesheet" href="./css/main.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<style></style>
</head>
<body>
<div id="myModal" class="modal">
<div class="modal-content">
<!-- <span class="close" id="closeBtn">닫기</span> -->
<p>게임이 끝났습니다.</p>
<span>당신의 점수는 : </span>
<span id="final-score"></span>점
<span>당신의 남은 시간은 : </span>
<span id="final-time"></span>초
<p>
다시 시작하시겠습니까?
</p>
<button id="restart">다시시작</button>
</div>
</div>
<div id="start_manu">
<button id = level onclick="setlevel1()">
<img src="images/level1.png" alt="" >
</button>
<button id = level onclick="setlevel2()"><img src="images/level2.png" alt="" ></button>
<button id = level onclick="setlevel3()"><img src="images/level3.png" alt="" ></button>
</div>
<table>
<h2>남은 시간</h2>
<span id="game-time">60</span>
<h2>점수</h2>
<span id="game-score">0</span>
<div id="contents"></div>
</table>
</body>
</html>