-
Notifications
You must be signed in to change notification settings - Fork 1
/
telescope-setting.html
108 lines (103 loc) · 5.22 KB
/
telescope-setting.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
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<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=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/telescopes.css">
<link rel="stylesheet" type="text/css" href="/css/topnav.css">
<title>KAU Astro Chaser</title>
</head>
<body style="height: 4750px;">
<nav class="navbar is-dark">
<div class="navbar-brand">
<a class="navbar-item" id="nav-home">
<img src="/image/Astro logo intro.png" alt="AC logo" width="130" height="50">
</a>
<div class="navbar-burger" data-target="navbarExampleTransparentExample">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="navbarExampleTransparentExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" id="nav-home">
Home
</a>
<a class="navbar-item" id="nav-aboutus">
About Us
</a>
<a class="navbar-item" id="nav-chasinghistory">
Chasing History
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Telescopes
</a>
<div class="navbar-dropdown is-boxed" >
<a class="navbar-item" id="nav-owned-telescopes">
보유 망원경
</a>
<a class="navbar-item" id="nav-setting-telescope">
설치법
</a>
</div>
</div>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-primary" id="nav-sign-up">
<strong>Sign up</strong>
</a>
<a class="button is-light" hid="nav-sign-in">
Log in
</a>
</div>
</div>
</div>
</div>
</nav>
<div class="contents">
<div class="leftNavBar">
<div class="leftNavContents" id="nav-contents-owned-telescopes">
<div class="leftNavText" >⭐️ 보유 망원경</div>
</div>
<div class="leftNavContents" style="background-color: rgb(217, 216, 216); color: black;" id="nav-contents-setting-telescope">
<div class="leftNavText">⭐️ 설치법</div>
</div>
</div>
<div class="rightContentBox">
<div class="mainContents">
<p>
<h4 class="title is-4" style="color: white; margin-top: 10px;">1. 삼각대의 코가 정북 방향을 향하도록 삼각대를 세운다</h4>
<img src="/image/telescope setting/setting1.jpg">
<h4 class="title is-4" style="color: white; margin-top: 10px;">2. 접어서 보관되어 있던 가대를 기본 세팅으로 편다.</h4>
<img src="/image/telescope setting/setting2.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">3. 삼각대의 코와 잘 맞춰서 가대를 삼각대에 결합시키고, 삼발이를 끼운다.</h4>
<img src="/image/telescope setting/setting3.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">4. 가대의 미동나사를 결합한다.</h4>
<img src="/image/telescope setting/setting4.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">5. 무게추봉을 끼우고, 무게추를 끼운다.</h4>
<img src="/image/telescope setting/setting5.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">6. 경통을 올바르게 든 후, 가대에 얹은 후 큰 나사부터 조여서 고정시킨다.</h4>
<img src="/image/telescope setting/setting6.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">7. 경통의 악세사리들을 모두 장착한다.</h4>
<img src="/image/telescope setting/setting7.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">8. 균형을 맞춘다.</h4>
<img src="/image/telescope setting/setting8.png">
<h4 class="title is-4" style="color: white; margin-top: 10px;">9. 파인더 정렬을 한다.</h4>
<img src="/image/telescope setting/setting9.png">
</p>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="/js/hostAddr.js"></script>
<script type="text/javascript" src="/js/navHref.js"></script>
</html>