mirror of
https://github.com/DidiDidi129/Website.git
synced 2026-04-05 12:04:38 +00:00
Waves
This commit is contained in:
@@ -1823,4 +1823,21 @@ input, select, textarea {
|
||||
align-items: center;
|
||||
gap: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.wave-text span {
|
||||
display: inline-block;
|
||||
font-size: 4rem;
|
||||
animation: wave 2s ease-in-out infinite;
|
||||
animation-delay: calc(0.1s * (var(--i)));
|
||||
}
|
||||
|
||||
|
||||
@keyframes wave {
|
||||
0%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user