Create awesome Page Transitions in NextJS using Framer motion

Create awesome Page Transitions in NextJS using Framer motion

 122
 6
 4 minutes

I recently decided to re-design my portfolio in NextJs. So, I started researching around the web for some cool page transitions which I would like to have for my portfolio, and I came across something like this. (Similar to Barba.js) Alt Text

So, I decided to figure out and create this transition. In this tutorial, I am going to explain the steps I took to create this nice page transition. Let's start.

Note - In this example, I will only be talking about the CSS relevant to the animations. If you want the whole CSS as well, there is a github repo mentioned at the end of the tutorial.

New project, who-hoo!!

First, we need to create a new NextJS project by typing the below command into your terminal.


And now open your newly created project folder into your favourite Editor.

Type in your terminal to start the dev server on PORT 3000.

Installing Framer motion

Type to install framer motion to your project.

A little setup

Now that we have installed framer motion, we need to set something up. Open your _app.js in the pages directory and import AnimatePresence from framer-motion and wrap it around the main content like this.


AnimatePresence helps to animate React components when they are removed from React tree. It kind of helps for making exit animations for components. The exitBeforeEnter prop on AnimatePresence tells framer-motion to remove the current component with animation and then start the animation for new component.

Creating the pages

Now, we need to create different pages so that we can actually have transition animation between them. In this example, we are going to create just 3 simple pages. (Home, about, services).

Open index.js in the pages directory, and create a basic React component.


Now, we need to create two more files about.js and services.js like so.



Creating the Navbar

Now that we have created three basic pages, we need navbar with links so that we could transition between pages. Create a folder called components in the root directory and in that folder create a Navbar.js with the following content.


This is a basic navbar which will help to navigate between the pages. The Link is a built in nextjs module which will create a link in the DOM that will navigate to other pages.

Now, we need to import the Navbar into the pages we've created! So the final files should be looking something like these.




Animating pages - The fun Part

Let's understand the animation first. This animation is divided into two parts. The sliding-in animation on current page and sliding out on the next page. Take a look at the figure below to understand better. Sliding in animation on page 1 Sliding in Sliding out animation on page 2 Sliding out

We need to animate two divs (one for sliding in and the other for sliding out animation) for every page we want to have animation for. We can create a component for these two divs, but adding these two divs to every page can be hectic, so we are going to create a Higer Order Component for this purpose.

HOC

Create a folder called HOC and in that folder, create a file called withTransition.js. In this file, we are going to import motion from framer motion and also create a function that is going to return a new component with the animating divs.



Now, we need to include this HOC in every page we want to have page transition for. For example, I want to have animations for all 3 of my pages so, I'd import withTransition in every page and pass the component within it like so.




And that's it....🎊️

We have now completed the page transition. The demo and GitHub links are provided below Demo - https://nextjs-transition-example.vercel.app/ GitHub repo - https://github.com/shaan71845/nextjs-page-transition-example

Feel free to leave a 🌠️ Thanks for reading!!