Files
thenextbigthing/animation.html

54 lines
1.5 KiB
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;
font-size: 2em;
opacity: 0.8;
white-space: nowrap;
overflow: hidden;
border-right: 0.15em solid orange;
}
.typewriter {
animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}
.fade {
animation: fadeText 6s infinite;
opacity: 0;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: orange; }
}
@keyframes fadeText {
0%, 33% { opacity: 0; }
34%, 66% { opacity: 1; }
67%, 100% { opacity: 0; }
}
</style>
</head>
<body>
<div class="text typewriter">The Next BIG Thing...</div>
<div class="text fade" style="animation-delay: 4s;">stay tuned</div>
<div class="text fade" style="animation-delay: 8s;">coming soon</div>
</body>
</html>