-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (90 loc) · 3.48 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="ko">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:image" content="./img/meta.png">
<script src="./lib/pixi.min.js"></script>
<script src="./lib/viewport.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="./img/icon-80.png">
<link rel="stylesheet" type="text/css" href="./main.css">
<link rel="stylesheet" type="text/css" href="./modal.css">
<title>WebSolarSystem</title>
</head>
<script type="module" src="./js/index.js"></script>
<body>
<div id="container">
</div>
<div id="top_bar">
<p id="title"> WebSolarSystem </p>
<p id="fps_counter"><span id="fps_indicator"></span>FPS</p>
<button id="options_button">설정</button>
</div>
<div id="bottom_bar">
<img id="prev_body_button" src="./img/prev.png" class="bottom_arrow">
<p id='bottom_bar_left_msg'></p>
<p id='bottom_bar_right_msg'>태양</p>
<img id="next_body_button" src="./img/next.png" class="bottom_arrow">
</div>
<div id="modal">
<div id="modal_header" class="header">
<p class='init_message'> 정보를 보려면 천체를 선택하세요. </p>
</div>
<div id="modal_body" >
<div id="body_details" class="content">
</div>
</div>
</div>
<div id = "splash">
<p id = "splash_text">WebSolarSystem</p>
<div id="myProgress">
<div id="myBar"></div>
</div>
</div>
<div id="options">
<div id="options_box">
<div id="options_header">
<h1>설정</h1>
<img id="options_close" src="./img/x.png">
</div>
<div id="options_body">
<div class="options_item">
<p class="options_text">날짜 </p>
<div class="options_input">
<input id="options_date" type="date" min="2017-01-01" max="2027-12-31">
<button id="options_date_set_button">
설정
</button>
</div>
</div>
<div class="options_item">
<div class="options_text">
<p>시뮬레이션 속도</p>
<p id="options_simulate_speed_indicator">실시간</p>
</div>
<div class="options_input">
<input id="options_simulate_speed" type="range" value='1' min='0' max='4' step="1">
</div>
</div>
<div class="options_item">
<p class="options_text">FPS 표시</p>
<input class="options_input" id="options_FPS_enable" type="checkbox">
</div>
<div class="options_item" id="fullscreen_option">
<p class="options_text">전체화면</p>
<input class="options_input" id="options_fullscreen_enable" type="checkbox">
</div>
</div>
<div id="options_footer">
<p>제작자 : 박찬수</p>
<p>e-mail : [email protected]</p>
<p>마지막 수정일자 : 2022.12.11</p>
<p>주의 : 본 프로그램에서 제공하는 천체의 위치는 근사적인 위치이며 정확하지 않습니다.</p>
<a href="./attribution.html" class="attribution" target="_blank">Attribution ⧉</a>
</div>
</div>
</div>
</body>
</html>