This method may not be the best way for NextJS v12+ since new API is provided.
Before we start building any component for the transition, let's ...
For further actions, you may consider blocking this person and/or reporting abuse
Very cool idea! I am trying to implement it in one of the websites. However, one problem is that no matter how much you scroll in the page, the fade out transition will occur at the top of the page when changing routes. Do you think there is a way to fade out from the current scroll position?
I have updated my codesandbox example.
You can set a height for the div that contains the content from different page, and set the overflow to auto.
Hope this will help your problem.
Thanks
Thanks for replying. I will try to take a look.
Cool idea, there are just two issues that could case problems. One is if you click the same link as the page still transitions. So if your on the home page and you click the home link it will fade out and fade back in. This is because comparing the children object always returns false as the reference is always different. One way to fix this is to compare the children.type.name instead which is the name of the component. The other issue was that the useEffect would run twice. This is also fixed by comparing the function name.
Great suggestion! Thanks for pointing that out.
That was lovely to end up here AnxinYan!
I do have a question, is it possible to have a "crossfade" solution in NextJS? Having both "current view" and "next view" accessible at the same time?
I have tested barba.js and highway.js - and they are not made compatible with nextjs. And Highway.js have also declared that they not intend to make it nextjs-compatible. Both these lovely transition-tools are out of scope for using with Route-changes in NextJS.
I have tested Framer Motion - but only as a way to enable this "hold on to the currrent view and transition it out" - but what I want is to trigger the GSAP instead of Framer Motion ;)
I can not do better explaining - since I am not a react-star.
Am working on something similar to this (using - and GSAP.... so I should really ditch Framer Animation for this solution here)...
BUT.
If some of you experience some problems, then try to use the useLayoutEffect instead of useEffect.
This since the useLayoutEffect hooks into before the very first paint to the browser, which useEffect isnt.
I also noticed something strange when compiled with SSR. between pages you get a flash of unstyled content. when you are running the dev server this is not visible
I ran into this issue as well but from a different direction. I was working on page transitions using React Transition Group and the
<SwitchTransition>
component, with GSAP to create page transitions and had this problem of the styles. As you mention everything works great on development but in production the problems start.The only solution I found so far is not use modules as the styling approach and have a single CSS file, which is not ideal.
I made this repo:
github.com/rhernandog/next-gsap-tr...
Here is live:
cranky-heyrovsky-83f0a9.netlify.app/
looks like the stylesheets get unloaded right in between the transitions..
Having same issue !
Having the same issue. anyone have a solution?
I have not running into this issue so far. Do you mind share how you compiled your files?
Really cool!
Could I make some code from this idea?
Great article!! Small typo in 2nd paragraph "When you navigation to a different page"