-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvote.html
More file actions
33 lines (32 loc) · 1.23 KB
/
Copy pathvote.html
File metadata and controls
33 lines (32 loc) · 1.23 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>밸런스 게임 투표</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="app">
<div class="voter">
<div class="voter-head">⚖️ 밸런스 게임 <span id="vRoom" class="voter-room"></span></div>
<div class="voter-q" id="vQ">질문을 불러오는 중…</div>
<div class="voter-opts">
<button class="voter-opt a" id="vOptA" disabled></button>
<div class="voter-vs">VS</div>
<button class="voter-opt b" id="vOptB" disabled></button>
</div>
<div class="voter-status" id="vStatus">연결 중…</div>
</div>
</div>
<!-- Firebase SDK -->
<script src="https://www.gstatic.com/firebasejs/10.12.2/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.12.2/firebase-database-compat.js"></script>
<!-- 데이터 & 설정 -->
<script src="data/balancegame.js"></script>
<script src="js/firebase-config.js"></script>
<script src="js/live.js"></script>
<script src="js/sfx.js"></script>
<script src="js/vote.js"></script>
</body>
</html>