Animations
simple
Pop Animation

Pop Animation

The Pop animation creates a quick scaling effect that makes elements appear to pop in.

Demo

This element will pop as it enters the viewport.

Usage

To use the Pop animation, import it from react-swift-reveal:

App.jsx
import { Pop } from 'react-swift-reveal';
 
const App = () => {
  return (
    <Pop>
      <div className="box">
        This element will pop as it enters the viewport.
      </div>
    </Pop>
  );
};

Props

Pop animation doesn't have any specific props of its own. it has all the props of Swift Reveal Props.

You can refer to the Swift Reveal Props documentation for a list of all available props.