Animations
simple
Tada Animation

Tada Animation

The Tada animation creates a celebratory effect by combining scaling and rotation.

Demo

This element will tada as it enters the viewport.

Usage

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

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

Props

Tada 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.