-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (75 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<!-- app -->
<div
id="app"
class="flex flex-col items-center justify-between text-center text-[#2c3e50] selection:bg-green-100"
>
<!-- Section 01 -->
<div class="h-screen w-full bg-green-300">
<h1
class="bg-gradient-to-r from-green-600 to-sky-400 bg-clip-text text-5xl font-black text-transparent selection:bg-transparent"
>
Section 01
</h1>
<button
type="button"
class="mt-4 rounded-md bg-pink-500 py-2 px-4 text-white"
>
Button
</button>
</div>
<!-- Section 02 -->
<div class="h-screen w-full bg-blue-300">
<h1
class="bg-gradient-to-r from-green-600 to-sky-400 bg-clip-text text-5xl font-black text-transparent selection:bg-transparent"
>
Section 02
</h1>
<button
type="button"
class="mt-4 rounded-md bg-pink-500 py-2 px-4 text-white"
>
Button
</button>
</div>
</div>
<!-- dialog -->
<div
id="dialog"
class="overflow-sc fixed inset-0 hidden overflow-auto bg-black bg-opacity-50 p-10 py-10 pt-20 pb-10"
style="-webkit-overflow-scrolling: touch"
>
<div
class="close absolute top-10 right-10 cursor-pointer rounded-md bg-black py-2 px-4 text-white opacity-100"
>
X
</div>
<div
class="mt-10 flex flex-col items-center justify-center rounded-md bg-white p-4"
>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro, quis.
</p>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro, quis.
</p>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro, quis.
</p>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro, quis.
</p>
</div>
</div>
<script type="module" src="./src/main.js"></script>
<script type="module" src="./src//scroll.js"></script>
</body>
</html>