53 lines
1.5 KiB
HTML
53 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;
|
|
}
|
|
@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; }
|
|
50%, 83% { opacity: 1; }
|
|
100% { opacity: 0; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="text typewriter">The Next BIG Thing...</div>
|
|
<div class="text fade" style="animation-delay: 3.5s;">stay tuned</div>
|
|
<div class="text fade" style="animation-delay: 6s;">coming soon</div>
|
|
</body>
|
|
</html>
|