-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoor.html
29 lines (28 loc) · 1.05 KB
/
door.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
<!DOCTYPE html>
<html lang="ko">
<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>
<link rel="stylesheet" href="./css/door.css" />
</head>
<body>
<div class="container" id="app">
<div class="card" v-if="hasKey">밤코카드</div>
<div class="main">
<img src="./photo/door.jpeg" class="main-image" />
<div @click="lockDoor" class="door info"></div>
<div @click="getKey" class="signBoard info"></div>
<div @click="openDoor" class="security info"></div>
<div @click="catcha" class="floor info"></div>
</div>
<div class="chat" v-show="showChat">
<span class="chat-text"></span>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="./js/door.js"></script>
</body>
</html>