-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 1.98 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
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Minimalist Web</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.background-animation {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.background-animation div {
position: absolute;
top: 50%;
left: 50%;
font-size: 20px;
color: rgba(0, 0, 0, 0.1);
animation: move 10s linear infinite;
}
@keyframes move {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.title {
z-index: 1;
font-size: 48px;
color: #333;
}
</style>
</head>
<body>
<div class="background-animation">
<div style="animation-duration: 10s;">!</div>
<div style="animation-duration: 12s;">@</div>
<div style="animation-duration: 14s;">#</div>
<div style="animation-duration: 16s;">$</div>
<div style="animation-duration: 18s;">%</div>
<div style="animation-duration: 20s;">^</div>
<div style="animation-duration: 22s;">&</div>
<div style="animation-duration: 24s;">*</div>
<div style="animation-duration: 26s;">(</div>
<div style="animation-duration: 28s;">)</div>
</div>
<div class="title">TheMinimalistWeb</div>
</body>
</html>