-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.html
93 lines (93 loc) · 1.64 KB
/
text.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="common.css" />
<title>Text Animation</title>
<style>
:root {
--color: #e6e6e6;
}
body {
background: var(--color);
}
.wrapper {
background-color: white;
padding: 2.5rem 5rem;
}
.divider {
padding: 2px;
background-color: #d6d6d6;
min-width: 300px;
animation: divider 0.5s ease forwards;
transform-origin: left;
transform: scaleX(0);
}
@keyframes divider {
to {
transform: scaleX(1);
}
}
h1 {
color: #262626;
}
.upperText,
.lowerText {
position: relative;
overflow: hidden;
}
.upperText h1 {
position: relative;
animation: slideUp 1s ease forwards;
animation-delay: 0.5s;
top: 150px;
}
.lowerText h1 {
position: relative;
animation: slideDown 0.5s ease forwards;
animation-delay: 1.5s;
top: -100px;
}
@keyframes slideUp {
0% {
top: 100px;
}
40% {
top: 60px;
}
60% {
top: 60px;
}
100% {
top: 0;
}
}
@keyframes slideDown {
0% {
top: -100px;
}
100% {
top: 0;
}
}
</style>
</head>
<body>
<div class="wrapper shadow">
<div>
<div class="upperText">
<h1>Olympic of</h1>
<h1>Skills</h1>
</div>
<div class="divider"></div>
<div class="lowerText">
<h1>worldskills.org</h1>
</div>
</div>
</div>
<!-- animation script -->
<script></script>
</body>
</html>