-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netflix Clone</title>
</head>
<body class="bg-black cursor-default text-white">
<div id="root">
<style>
@keyframes loadding-anim {
0% {
transform: scale(1);
opacity: 1;
filter: blur(0px);
}
100% {
transform: scale(10);
opacity: 0;
filter: blur(1px);
}
}
</style>
<style>
body { overflow: hidden; }
body, #root, #roote {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: black;
}
.netflix-stick {
width: 7vh;
height: 30vh;
background-color: #b1060f;
position: relative;
z-index: 1;
transform: scale(0.5);
opacity: 1;
filter: blur(0px);
}
.netflix-logo-out {
animation: loadding-anim 1s cubic-bezier(0.895, 0.030, 0.685, 0.220) both;
}
.netflix-stick:before {
content: "";
position: absolute;
width: 7vh;
height: 30vh;
background-color: #e50913;
transform: skew(20deg);
left: 5.5vh;
box-shadow: 0 0 2.5vh -1vh black;
}
.netflix-stick:after {
content: "";
position: absolute;
width: 7vh;
height: 30vh;
background-color: #b1060f;
left: 11vh;
z-index: -1;
}
.thing {
width: 7.5vh;
height: 2vh;
position: absolute;
background-color: black;
bottom: -1vh;
transform: rotateZ(-5deg);
}
.thing:before {
content: "";
width: 7.8vh;
height: 2vh;
position: absolute;
background-color: black;
bottom: -1vh;
transform: rotateZ(12deg);
left: 10.2vh;
}
</style>
<div class="netflix-stick">
<div class="thing">
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>