Socket
Book a DemoInstallSign in
Socket

react-scrambled-text

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

react-scrambled-text

A package to create the scrambled text animation easily

unpublished
npmnpm
Version
1.0.4
Version published
Weekly downloads
8
700%
Maintainers
1
Weekly downloads
 
Created
Source

React Scrambled Text

demo gif

This is a package to create scrambled text animation in react easily. A lightweight package which you just install once and are ready to go

How to install

npm install react-scrambled-text

or

yarn add react-scrambled-text

Usage

Once Installed, you can just import it in your own component and start using it.

Import it using:

import ScrambledAnimation from 'react-scrambled-text'

And you can use it like this:

<ScrambleAnimation
    texts={["hello", "world"]}
    speed={100}
    pauseDuration={2000}
    start={true}
/>

Props

Prop NameDescriptionTypeDefault Value
texts multiple texts that are gonna be rendered on the screen after being scrambled Array["Hello, World!"]
speed the speed at which each letter of the text unscrambles(in milliseconds) Number100
pauseDuration duration between the scrambling of two different texts in milliseconds Number3000
start the variable that controls if the animation will play or not Booleantrue
style custom styles that you might wanna add to the text being rendered on the screen React.CSSPropertiesnull
className custom className you might wanna give to the text being rendered stringnull

FAQs

Package last updated on 24 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts