-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.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
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
63
64
65
66
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BOWM Recipe Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2>BOWM Recipe Game</h2>
<div class="section-container" id="tutorial-container" style="display: none">
<div>How to play</div>
<div></div>
<p>
주어진 메뉴를 보고 레시피를 완성해보세요!
<br />
<br />
레시피를 완성하면 점수를 얻을 수 있습니다.
<br />
<br />
재료명+수량+동작 순서대로 카드를 탭해보세요!
</p>
</div>
</div>
<div class="section-container" id="game-container" style="display: flex">
<div id="score-container">Score: 0</div>
<h2 id="recipe-name"></h2>
<button id="nextButton" class="next-button" style="display: none;">다음 문제</button>
<div id="recipe-track-container">
Guess the recipe!
<div id="recipe-track"></div>
<button id="backspaceBtn" class="backspace-btn">↩️</button>
</div>
<br />
<div>Tap the cards below to guess the recipe!</div>
<div id="ingredient-card-container">
</div>
<div id="quantity-card-container">
</div>
<div id="action-card-container">
</div>
</div>
<div class="timer-container">
<div class="timer-line"></div>
</div>
<div class="result-popup" id="resultPopup">
<div class="popup-content">
<span class="result-text"></span>
<div class="score-change"></div>
<button id="nextButton" class="next-button" style="display: none;">다음 문제</button>
</div>
</div>
<audio id="bgMusic">
<source src="Quiz Quest 8-bit Beat.mp3" type="audio/mpeg">
</audio>
<div id="startScreen" class="start-screen">
<button id="startButton" class="start-button">게임 시작</button>
</div>
<script src="app.js"></script>
</body>
</html>