-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (94 loc) · 3.3 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyTC</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- <script src="./js/index.js"></script> -->
</head>
<body>
<div id="main_bg">
<div id="main_dark">
<header>
<nav>
<ul>
<li>
<a href="#">MyTC</a>
</li>
<li>
<button type="button" id="about">ABOUT</button>
</li>
<li>[email protected]</li>
</ul>
</nav>
</header>
<section>
<h1>
<span>
My Travel Course
</span>
당신의 여행을 설계하세요
</h1>
<a href="./daum_map.html">구글로 시작하기</a>
</section>
</div>
</div>
<aside>
<div>
<h2>당일치기 여행 코스를 내 마음대로 짤 수 있는 MyTC</h2>
<p>요즘 바쁜 직장인들이나 학생들은 길게 여행을 가지 못하는 점으로 당일치기로 여행을 많이 갑니다.<br/>
MyTC는 정해진 여행 코스를 제공하므로써 여행 계획에 걸리는 시간을 단축할 수있도록 도와줍니다.<br/>
또한 코스에 해당하는 맛집 정보를 통해 편리함을 제공합니다.</p>
<h2>MyTC 사용방법</h2>
<ol>
<li>1. 관심있는 지역을 검색합니다.</li>
<li>2. 마음에 드는 추천코스는 My Course로 담아옵니다.</li>
<li>3. My Course를 관리하여 나만의 여행코스를 짭니다.</li>
</ol>
<h3>MyTC를 만든 사람들</h3>
<dl class="dl-margin">
<dt>임지호</dt>
<dd>Back-end Developer</dd>
</dl>
<dl class="dl-margin">
<dt>이도현</dt>
<dd>Designer | Front-end Developer</dd>
</dl>
<dl>
<dt>김주은</dt>
<dd>Back-end Developer</dd>
</dl>
<dl>
<dt>김어진</dt>
<dd>Front-end Developer</dd>
</dl>
</div>
<span id="close_about">X</span>
</aside>
</body>
<script>
$(document).ready(function(){
$("#about").on('click',function(e){
$("aside>div").animate( {
left: '0'
});
$("#close_about").animate( {
left: '97vw'
});
});
$("#close_about").on('click',function(e){
$("aside>div").animate( {
left: '-100vw'
});
$(this).animate( {
left: '-97vw'
});
});
});
</script>
</html>