-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.59 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
<!DOCTYPE html>
<html>
<style>
body {
background-color: black;
background-image: url("assets/images/void.png");
color: white;
font-family: 'PT Sans', sans-serif;
overflow: hidden;
}
a {
color:black;
}
div {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
img {
height: 45vh;
filter: contrast(1.2);
position: absolute;
animation-name: introImg, floatin;
animation-duration: 2s, 6s;
animation-delay: 0ms, 2s;
animation-timing-function: none, cubic-bezier(0.445, 0.05, 0.55, 0.95);
animation-iteration-count: 1, infinite;
}
h1 {
position: absolute;
mix-blend-mode: color-dodge;
animation: introTxt 4s;
}
@keyframes introTxt {
0% { opacity: 0%; }
100% { opacity: 100%; }
}
@keyframes introImg {
0% { padding-top: 200vh; }
100% { padding-top: 0; }
}
@keyframes floatin {
0% { padding-top: 0; }
50% { padding-top: 20vh; }
100% { padding-top: 0; }
}
</style>
<head>
<title>? ? ?</title>
</head>
<body>
<a href="https://www.youtube.com/watch?v=ezSpDRAnOV0">¿ ?</a>
<div id="valFinal">
<img src="assets/images/val.png"/>
<h1>Soon?</h1>
</div>
</body>
</html>