Skip to content
View jacky2252v's full-sized avatar
💭
💭

Block or report jacky2252v

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. TextScrambler Component A React com... TextScrambler Component A React component that animates a "hacker-style" text scramble effect on mouse hover. When the user hovers over the text, each character rapidly cycles through random symbols, numbers, and letters before settling back into the original text. Features: - Supports any string passed as children - Prevents overlapping animations using useRef - Fully resets to original text after animation - Cleans up intervals on unmount to prevent memory leaks Usage: <TextScrambler>HELLO WORLD</TextScrambler>
    1
    "use client";
    2
    
                  
    3
    import { useState, useEffect, useRef } from "react";
    4
    
                  
    5
    export default function TextDeco({ children, className }: { children: React.ReactNode, className?: string  }) {