2022-06-12.15-20-38.mp4
This nice and simple (1kB) react component can help you add text glitch animation and have some really cool themes, like orange glitch or blue glitch
npm i glitch-text
---
yarn add glitch-text// don't forget change props
import { GlitchText } from 'glitch-text';
// orange theme by default
const App = () => {
return (
<div style={{ fontSize: '70px' }}>
<GlitchText theme='orange' text={'There are your text'} />
</div>
);
};Text fully customazible but try use parents tags for styling
I'm recommend use 50px - 100px range for more beauty effect
- orange - (by default)
- blue
- green
- red
- white
- purple
Check here - https://react-next-js-api-auth.vercel.app/
Check here - https://komaroad.netlify.app/
| props | required | default | description |
|---|---|---|---|
| text(string) | yes | - | text where you want use glitch animation |
| theme(string) | yes | orange | glitch color |

