-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
57 lines (52 loc) · 2.5 KB
/
main.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="imagetoolbar" content="no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Title" content="스핑크스 퀴즈"/>
<meta http-equiv="Author" content="윤준석"/>
<title>스핑크스 퀴즈</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<!-- HTML head 끝-->
<body style="overflow-x: hidden; overflow-y: hidden;">
<!-- 가로 및 세로 스크롤을 막는 overflow-x,y 사용 -->
<header>
<h1>스핑크스 퀴즈</h1>
<nav>
<ul>
<form>
<button class="button" type="button" onclick="location.href='./Q1.html'">게임 시작</button>
<button class="button" type="button" onclick="location.href='./Q1.html'">Q1</button>
<button class="button" type="button" onclick="location.href='./Q2.html'">Q2</button>
<button class="button" type="button" onclick="location.href='./Q3.html'">Q3</button>
<button class="button" type="button" onclick="parent.location.href='./gameover.html'">게임 오버</button>
<button class="button" type="button" onclick="parent.location.href='./gameclear.html'">게임 클리어</button>
</form>
</ul>
</nav>
</header> <!-- HEADER 끝-->
<!-- audio play -->
<!-- 내용을 넣는 부분 -->
<div class="main">
<h3 class="co" style="font-size: 60px;">스핑크스 퀴즈에 온것을 환영하오 하 하 하</h3>
<h3 class="co" style="font-size: 60px;">문제를 다 맞추면 보물을 주지!</h3>
<h3 class="co" style="font-size: 60px ;">대신에 문제를 못맞추면 널 잡아먹겠다!</h3>
</div>
<!-- 게임 시작 버튼(position fixed) -->
<form class="startbutton">
<button class="custom-btn btn-12" type="button" onclick="location.href='./Q1.html'"><span>눌러서 게임 시작!</span><span
class="blinking">게임 시작</span></button>
</form>
<!-- 배경 및 커서 이미지 -->
<img id="bgimg" src="./img/sphinx.png" alt="이미지를 표현할 수 없습니다.">
<img id="cursorimg" style="position:absolute; left:0; top:0; z-index:999;" src="./img/sphinxnobg.png" alt="이미지를 표현할 수 없습니다.">
<!--조금 작은 커서 이미지-->
<!--<img id="cursorimg" style="position:absolute; left:0; top:0; z-index:999;" src="./img/nobg45.png" alt="이미지를 표현할 수 없습니다.">-->
<!-- js 파일 불러오기 -->
<script src="./js/cursor.js"></script>
<script src="./js/music.js"></script>
</body>
</html>