smooth transition between pages when redirecting with jquery

前端 未结 3 1203
攒了一身酷
攒了一身酷 2021-01-25 21:46

I am trying to get a smooth transition when I redirect users. First by fading out the page then redirecting and and fadeIn.

Here is my redirect

if ( dat         


        
3条回答
  •  一向
    一向 (楼主)
    2021-01-25 22:25

    You're getting what is called a "flash of unstyled content" or FUC. You could wrap your second page in a container and hide that via css (display: none;) and then fade in when it's loaded.

提交回复
热议问题