Animations
simple
Jello Animation

Jello Animation

The Jello animation adds a fun and wobbly effect to elements, creating a lively and dynamic transition.

Usage

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

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

Props

The Jello animation doesn't have any specific props, but it accepts all the props that are available to all animations. You can read more about them in the Swift Reveal Props documentation.