@jojovms/react-tilt-card
v0.0.2
Published
Tiltō: A premium 3D tilt interaction effect for your cards (React wrapper).
Maintainers
Readme
@jojovms/react-tilt-card
React wrapper for the Tilt Card library.
Installation
npm install @jojovms/react-tilt-cardUsage
import { Tilt } from '@jojovms/react-tilt-card';
const MyCard = () => (
<Tilt
max={25}
glare={true}
style={{ width: 300, height: 200, background: 'blue' }}
>
<h1>Hover Me</h1>
</Tilt>
);