link
tailwindcss/custom-animation

Custom Animation

Create custom animation

animation
custom

Command

Examples

Custom slow spin animation

// tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        animation: {
          'spin-slow': 'spin 3s linear infinite',
        }
      }
    }
  }