Better UIBetter UI

Glitch Effect Text

Simulate a glitch effect on text with customizable speed, direction, colors, and shadow using framer-motion for dynamic animations.

Overview

The GlitchEffectText component creates a glitchy, distorted text effect using framer-motion for animation. By applying multiple layers of text with slight offset and color differences, it simulates a glitch effect.

This component allows customization of the glitch speed, direction (horizontal or vertical), text colors, and shadow for a fully customizable and dynamic visual effect.


Preview

Glitch
Glitch
Glitch

Usage

'use client'
 
import { GlitchEffectText } from '@/components/text/glitch-effect-text'
 
<GlitchEffectText text="Glitch" />

Code

'use client'
 
import React from 'react'
 
import { motion } from 'motion/react'
 
import { cn } from '@/lib/utils'
 
interface GlitchEffectTextProps {
  text: string
  glitchSpeed?: number
  glitchDirection?: 'horizontal' | 'vertical'
  glitchColors?: [string, string]
  className?: string
  textShadow?: string
  as?: React.ElementType
}
 
export function GlitchEffectText({
  text,
  glitchSpeed = 0.3,
  glitchDirection = 'horizontal',
  glitchColors = ['text-red-500', 'text-blue-500'],
  textShadow = '2px 2px 4px rgba(0,0,0,0.5)', // Default shadow
  className,
  as: Component = 'div',
}: GlitchEffectTextProps) {
  const MotionComponent = motion.create(Component)
 
  const direction = glitchDirection === 'horizontal' ? [-2, 2, -2] : [2, -2, 2]
  const secondaryDirection =
    glitchDirection === 'horizontal' ? [2, -2, 2] : [-2, 2, -2]
 
  return (
    <div
      className={cn(
        'relative p-1 text-4xl font-bold text-white blur-0',
        className
      )}
    >
      {/* Glitch Layer 1 */}
      <MotionComponent
        className={cn(
          'absolute inset-0 z-10 will-change-transform',
          glitchColors[0]
        )}
        animate={{
          x: direction,
          y: [2, -2, 2],
        }}
        transition={{
          repeat: Number.POSITIVE_INFINITY,
          duration: glitchSpeed,
          ease: 'linear',
          delay: Math.random() * 0.1, // Randomize delay for more natural glitch
        }}
      >
        {text}
      </MotionComponent>
 
      {/* Glitch Layer 2 */}
      <MotionComponent
        className={cn(
          'absolute inset-0 z-20 will-change-transform',
          glitchColors[1]
        )}
        animate={{
          x: secondaryDirection,
          y: [-2, 2, -2],
        }}
        transition={{
          repeat: Number.POSITIVE_INFINITY,
          duration: glitchSpeed,
          ease: 'linear',
          delay: Math.random() * 0.1, // Randomize delay for more natural glitch
        }}
      >
        {text}
      </MotionComponent>
 
      {/* Main Text */}
      <div className="relative z-30" style={{ textShadow }}>
        {text}
      </div>
    </div>
  )
}
 

Example

glitchSpeed

Glitch
Glitch
Glitch

textShadow

Glitch
Glitch
Glitch

Props

PropTypeDefault
text
string
-
glitchSpeed
number
0.3
glitchDirection
"horizontal" | "vertical"
"horizontal"
glitchColors
[string, string]
["text-red-500", "text-blue-500"]
className
string
-
textShadow
string
"2px 2px 4px rgba(0,0,0,0.5)"
as
ElementType<any, keyof IntrinsicElements>
"div"

On this page