CSS Animation

Blinking cursor

Credit - Frontend Master Phuoc Nguyen

TailwindCSS + ReactJS version of https://phuoc.ng/collection/css-animation/blinking-cursor/

Please read the original blog for the rationale behind these solutions.

Markup

export default function App() {
  return (
    <div className='bg-black h-8 w-1'/>
  );
}

Approach 1: Background Color based

export default function App() {
  return (
    <div className='animate-blink-cursor h-8 w-1 bg-black'/>
  );
}

Approach 2: Opacity based

export default function App() {
  return (
    <div className='animate-blink-cursor h-8 w-1 bg-black'/>
  );
}
Last Update: 04:50 - 25 April 2024

On this page