Deepak Devanand
Posted on September 4, 2022
Within the document, there are sections that if animated just a bit, could enhance the overall visual appeal of the design. One such animation is a simple, slide-up reveal that guides the user's attention unobtrusively.
.reveal {
animation: 1.5s revealup ease infinite;
}
@keyframes revealup {
from {
opacity: 0;
transform: translatey(-15%);
}
to {
opacity: 1;
transform: translatey(-25%);
}
}
💖 💪 🙅 🚩
Deepak Devanand
Posted on September 4, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.