-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (112 loc) · 4.1 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="ko-KR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TVING</title>
<link rel="icon" type="image/png" sizes="16x16" href="/public/assets/favicon.ico">
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css"
/>
<script type="module" src="/main.js"></script>
</head>
<body>
<section class="loading"></section>
<!-- 헤더 -->
<c-header style="position: relative; z-index: 100;"></c-header>
<!-- 섹션 1 -->
<section class="section-1">
<div class="section-1__img-box">
<img
class="section-1__img-box--backgroundImg"
src="/public/assets/backgroundimg_1.png"
alt="타잉 랜딩 페이지의 배경 이미지: 인기 TV 프로그램과 영화의 콜라주" />
<img
class="section-1__img-box--gradationImg"
src="/public/assets/gradation-img.png"
alt="배경 이미지 위에 겹쳐지는 투명한 검은색 그라데이션 효과" />
</div>
<div class="section-1__text-box">
<span class="text-box__title">
<h2>타잉 오리지널 콘텐츠,</h2>
<h2>방송, 영화, 해외시리즈까지!</h2>
<h2>재미를 플레이해보세요.</h2>
</span>
<span class="text-box__explain">
간편하게 가입하고, 원하실 때 해지할 수 있어요.
</span>
</div>
<div class="button1 button" id="button">
<div class="rendingbutton" aria-describedby="buttonDescription"></div>
</div>
</section>
<!-- 섹션 2 -->
<section class="section-2">
<div class="text-box">
<span class="text-box__title">
<h2>타잉에만 있는 재미</h2>
</span>
<span class="text-box__explain"> 오리지널 콘텐츠를 만나보세요! </span>
<span class="text-box__explain2"> 차별화된 웰메이드 오리지널 콘텐츠 </span>
</div>
<div class="section-2__swiper-box"
role="region"
aria-label="타잉에만 있는 재미 - 티빙 작품 슬라이드" >
<div class="swiper" >
<div class="swiper-wrapper"
style="transition-timing-function: linear;">
</div>
</div>
</div>
</section>
<!-- 섹션 3 -->
<section class="section-3">
<div class="text-box">
<span class="text-box__title">
<h2>내가 찾던 재미</h2>
</span>
<span class="text-box__explain">
보고 싶은 콘텐츠를 발견하세요!
</span>
<span class="text-box__explain2">
최신, 인기 TV프로그램, 영화, 해외시리즈, 파라마운트+ 오리지널 및 독점
</span>
</div>
<div class="section-3__swiper-box"
role="region"
aria-label="내가 찾던 재미 - 티빙 작품 슬라이드">
<!-- 위 슬라이드 -->
<div class="swiper2">
<div class="swiper-wrapper swiper-wrapper2"
style="transition-timing-function: linear;">
</div>
</div>
<!-- 아래 슬라이드 -->
<div class="swiper2" dir="rtl"
role="region"
aria-label="내가 찾던 재미 - 티빙 작품 슬라이드">
<div class="swiper-wrapper swiper-wrapper3"
style="transition-timing-function: linear;">
</div>
</div>
</div>
</section>
<!-- 섹션 4 -->
<section class="section-4">
<div class="section-4__box">
<div class="section-4__box--taing-logo">
<img src="/public/assets/landing-logo.png" alt="타잉 로고" />
</div>
<p id="buttonDescription">지금 시작해보세요</p>
</div>
<div class="button2 button">
<div class="rendingbutton" aria-describedby="buttonDescription"></div>
</div>
</section>
<!-- 푸터 -->
<c-footer></c-footer>
</body>
</html>