-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameclear.html
68 lines (64 loc) · 2.9 KB
/
gameclear.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
67
68
<!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="gameclear"/>
<meta http-equiv="Author" content="윤준석"/>
<title>G A M E CLEAR!</title>
<link rel="stylesheet" href="./css/gameclear.css">
<script>
function createDIV() {
//부모객체를 찾음
let obj = document.getElementById("parent");
//DOM객체 동적 생성
let newDIV = document.createElement("div");
newDIV.innerHTML =
"스핑크스 : 약속한 대로 상을 주겠다!!<br>근데, 그 전에 말이지...<br>이건 10년 전 내가 이집트에 있을 때 말이네...<br>어쩌구 저쩌구.. TMI...<br>어쩌구 저쩌구.. TMI...<br><br>사람: 뭐야... 뭐저리 말이 많아..<br><br>이 문구 영역을 클릭해 들어가 보자!"
newDIV.style.fontSize = "x-large";
newDIV.style.color = "RED";
newDIV.style.fontWeight = "bold"
newDIV.style.marginLeft = "50px";
newDIV.addEventListener("click",
function () {
let p = this.parentElement
p.removeChild(this);
parent.location.href = './hiddenPage.html';
});
obj.appendChild(newDIV);
}
</script>
<header>
<h1 class="stopload">G A M E C L E A R !</h1>
<nav>
<ul>
<form>
<button class="button" type="button" onclick="location.href='./index.html'">메인으로</button>
</form>
</ul>
</nav>
</header>
<br><br>
</head>
<body>
<h3 style="font-size: 35px; color: #f8be10; position: fixed; top: 82%; left: 2%; ">스핑크스 : 크으윽... 분하다... 문제를 다 맞추다니!!
</h3>
<h3 style="font-size: 42px; color:aliceblue; position: fixed; top: 65%; left: 65%; ">제작자: 202214043 윤준석<br>제작기간:
3주<br>플레이 해주셔서 감사합니다!</h3>
<div id="parent">
<a href="javascript:createDIV()" style="font-size: 42px; color:red; position: fixed; top: 90%; left: 65%;">스핑크스의
마지막 유언 보기</a>
</div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<audio onloadstart="this.volume=0.3" autoplay>
<source src="./bgm/gamewin.mp3" type="audio/mp3">
</audio>
<img id="bgimg" src="./img/sphinxclear.jpeg" alt="이미지를 표현할 수 없습니다.">
<img id="cursorimg" style="position:absolute; left:0; top:0; z-index:999;" src="./img/sphinxnobg.png" alt="이미지를 표현할 수 없습니다.">
<script src="./js/cursor.js"></script>
</body>
</html>