1.0.3 • Published 3 years ago

@thenumber/react-slide-routes v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-slide-routes

The easiest way to slide React routes This is a fork of React Slide Routes. Functionality has been added to enable nested slide routes.

npm npm npm peer dependency version npm peer dependency version GitHub

Fit

react-router version >=4.0.0 and <6.0.0

Add

yarn add react-slide-routes

# or

npm install react-slide-routes

Use

import SlideRoutes from '@thenumber/react-slide-routes';
import { Route, useLocation } from 'react-router-dom';

const App = () => {
  const location = useLocation();
  return (
    <SlideRoutes location={location}>
      <Route path="/" component={Home} exact />
      <Route path="/about" component={About} />
      <Route path="/contact" component={Contact} />
    </SlideRoutes>
  );
};

Animation Key

TODO: Write explanation of animationKey.

Live

Play a live demo here → 🤳

live

API

PropTypeRequiredDefaultDescription
locationobjectyeslocationlocation from react-router-dom, required
animationstring'slide'Animation effect type, 'slide', 'vertical-slide', or 'rotate'
pathListarray[]Pre-defined pathname list, useful when enter a url, you want to "back" to some url (default "forward")
durationnumber200transition-duration in ms
timingstring'ease'transition-timing-function, one of 'ease' 'ease-in' 'ease-out' 'ease-in-out' 'linear'
animationKeystringPassing a key will prevent animation when moving between routes.
destroybooleantrueIf false, the passed page will still exits in dom, only invisible

License

MIT License