-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.69 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.69 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
34
35
36
37
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/p5.min.js"> </script>
<title></title>
</head>
<body>
<script type="text/javascript" src="js/text.js"></script>
<script type="text/javascript" src="js/maze.js"></script>
<script type="text/javascript" src="js/main.js"> </script>
<div id='title' onclick='window.scrollTo(0,0);'> </div>
<div id='about'> about</div>
<div id='info'>
'Everyday is a Maze'는 하루를 미로로 보여줍니다.
현재 시간에 따라 미로가 완성됩니다. 아무 변화도 없는 것 같아보이지만, 아주 잘 살펴본다면
미로가 조금씩 완성되는 것을 볼 수 있을 것입니다. 자정에 시작하여 다음날 자정까지 미로의 모든 칸이 채워지며,
날짜가 바뀌면 새로운 미로로 다시 시작합니다.<br>
<br>
미로는 새로고침을 할 때마다 다른 형태로 나타납니다.<br>
<br>
미로를 이루는 것은 그날 있었던 사건들의 목록입니다.
기념일을 먼저, 그 다음으로 연도 순으로 나타납니다.
문장 위에 커서를 올리면 문장이 흘러가서 n년의 오늘 무슨 일이 있었는지 확인 할 수 있습니다.
현재 완성되고 있는 문장은 커서를 올리지 않아도 스스로 흘러갑니다.
<br>
<br>
매일 매일은 새로운 미로입니다.
<br>
<br>
* wikipedia api를 사용하였습니다.<br>
https://www.mediawiki.org/wiki/API
</div>
</body>
</html>