forked from woowacourse/javascript-youtube-classroom
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
124 lines (124 loc) · 4.69 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<title>👩🏻💻 유튜브 강의실</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./src/css/index.css" />
</head>
<body>
<div id="app">
<div class="d-flex justify-center mt-5 w-100">
<div class="w-100">
<header class="my-4">
<h2 class="text-center font-bold">👩🏻💻 나만의 유튜브 강의실 👨🏻💻</h2>
<nav class="d-flex justify-center">
<button class="btn bg-cyan-100 mx-1">👁️ 볼 영상</button>
<button class="btn mx-1">✅ 본 영상</button>
<button id="search-button" class="btn mx-1">
🔍 동영상 검색
</button>
</nav>
</header>
<main class="mt-10">
<section class="video-wrapper">
<article class="clip">
<div class="preview-container">
<iframe
width="100%"
height="118"
src="https://www.youtube.com/embed/Ngj3498Tm_0"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<div class="content-container pt-2 px-1">
<h3>아두이노 무드등</h3>
<div>
<a
href="https://www.youtube.com/channel/UC-mOekGSesms0agFntnQang"
target="_blank"
class="channel-name mt-1"
>
메이커준
</a>
<div class="meta">
<p>2021년 3월 2일</p>
</div>
<div>
<span class="opacity-hover">✅</span>
<span class="opacity-hover">👍</span>
<span class="opacity-hover">💬</span>
<span class="opacity-hover">🗑️</span>
</div>
</div>
</div>
</article>
</section>
</main>
</div>
</div>
<div class="modal">
<div class="modal-inner p-8">
<button class="modal-close">
<svg viewbox="0 0 40 40">
<path class="close-x" d="M 10,10 L 30,30 M 30,10 L 10,30" />
</svg>
</button>
<header>
<h2 class="text-center">🔎 유튜브 검색</h2>
</header>
<form class="d-flex">
<input type="text" class="w-100 mr-2 pl-2" placeholder="검색" />
<button type="button" class="btn bg-cyan-500">검색</button>
</form>
<section class="mt-2">
<span class="text-gray-700">최근 검색어: </span>
<a class="chip">메이커준</a>
<a class="chip">우아한테크코스</a>
<a class="chip">우아한형제들</a>
</section>
<section>
<div class="d-flex justify-end text-gray-700">
저장된 영상 갯수: 50개
</div>
<section class="video-wrapper">
<article class="clip">
<div class="preview-container">
<iframe
width="100%"
height="118"
src="https://www.youtube.com/embed/Ngj3498Tm_0"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<div class="content-container pt-2 px-1">
<h3>아두이노 무드등</h3>
<div>
<a
href="https://www.youtube.com/channel/UC-mOekGSesms0agFntnQang"
target="_blank"
class="channel-name mt-1"
>
메이커준
</a>
<div class="meta">
<p>2021년 3월 2일</p>
</div>
<div class="d-flex justify-end">
<button class="btn">⬇️ 저장</button>
</div>
</div>
</div>
</article>
</section>
</section>
</div>
</div>
</div>
<script type="module" src="./src/js/index.js"></script>
</body>
</html>