E
E
Eugene Chefranov2015-11-15 21:38:30
css
Eugene Chefranov, 2015-11-15 21:38:30

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

2 answer(s)
D
Denis Vasiliev, 2015-11-15
@corvus007

smoothstate.com/index.html

S
slavapegaskin, 2016-03-15
@slavapegaskin

@keyframes fade{

    from {
      opacity: 0;
    }

    to{
      opacity: 1;
    }
}

body {
  animate: fade 1s;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question