Jello Animation
The Jello animation creates a jello-like effect by applying a series of skew transformations.
Demo
This element will jiggle like jello as it enters the viewport.
Usage
To use the Jello animation, import it from react-swift-reveal
:
App.jsx
import { Jello } from 'react-swift-reveal';
const App = () => {
return (
<Jello>
<div className="box">
This element will jiggle like jello as it enters the viewport.
</div>
</Jello>
);
};
Props
Jello 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.