Files
thenextbigthing/animation.html

37 lines
1017 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000;
color: #fff;
font-family: 'Courier New', Courier, monospace;
overflow: hidden;
}
.text {
position: absolute;
animation: fadeText 6s infinite;
font-size: 2em;
opacity: 0.8;
}
@keyframes fadeText {
0%, 33% { opacity: 1; }
50%, 83% { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<div class="text">The Next BIG Thing...</div>
<div class="text" style="animation-delay: 2s;">stay tuned</div>
<div class="text" style="animation-delay: 4s;">coming soon</div>
</body>
</html>