Answer the question
In order to leave comments, you need to log in
How to make a smooth transition animation to another page?
How to use CSS3 to make a click on a link a smooth transition (FadeIn / FadeOut) to another page.
Answer the question
In order to leave comments, you need to log in
@keyframes fade{
from {
opacity: 0;
}
to{
opacity: 1;
}
}
body {
animate: fade 1s;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question