rsnext/examples/with-framer-motion
stefanprobst 279ae19c7e
docs: update links to docs site (#14305)
this updates some links to the docs site to their new location
2020-06-18 09:54:07 +00:00
..
components Update examples to use getStaticProps where possible (#11136) 2020-03-17 15:07:27 +01:00
pages More redundant imports @ examples (#13190) 2020-05-22 15:33:04 +00:00
constants.js Improve linting rules to catch more errors (#9374) 2019-11-10 19:24:53 -08:00
package.json Add Framer Motion example (#9185) 2019-10-29 23:21:03 -04:00
README.md docs: update links to docs site (#14305) 2020-06-18 09:54:07 +00:00

framer-motion example

Framer Motion is a production-ready animation library. By using a custom <App> along with Motion's AnimatePresence component, transitions between Next pages becomes simple and declarative.

When using Next's <Link> component, you will likely want to disable the default scroll behavior for a more seamless navigation experience. Scrolling to the top of a page can be re-enabled by adding a onExitComplete callback on the AnimatePresence component.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-framer-motion with-framer-motion
# or
yarn create next-app --example with-framer-motion with-framer-motion

Download manually

Download the example:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-framer-motion
cd with-framer-motion

Install it and run:

npm install
npm run build
npm start

Deploy it to the cloud with Vercel (Documentation).