jQuery Plugin Applies a Scrambling / Decoding / Typewriter Effect | Text Scrambler

Scrambler is a small text animation plugin that can be configured to create the effect of text decoding by scrambling and revealing characters one by one.

text scramble effect, decoding text animation, canvas text animation effects, text animation examples, intro text animation html css, text animation javascript

How to make use of it:

1. Load the jquery.scrambler.js plugin after loading the jQuery library.

<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/jquery.scrambler.js"></script>

2. Just connect the function scrambler to the text and we’re achieved.

<h1 class="scramble">WebCodeFlow</h1>
$(function(){
  $("h1").scrambler();
});

3. Animate the text with a typing impact as an alternative.

$("h1").scrambler({
  effect: "typing"
});

4. Determine whether or not to keep whitespaces. If false, the plugin will fill whitespaces with a random character.

$("h1").scrambler({
  keep_whitespaces: false
});

5. Define the ultimate text the plugin animate to.

$("h1").scrambler({
  final_text: 'another text'
});

6. Config the Scrambling or Typing animation with the next parameters.

$("h1").scrambler({
  speed : 100,
  duration : 3000,
  reveal: 1000,
  total_iterations : 0,
  interval : -1
});

Scrambling Letters Within Text, Text Scrambler Plugin/Github, shattering text animation css, pure css confetti explosion

Scrambling-Decoding-Typewriter-Effect-Demo


See Demo And Download

Official Website(atharvamh): Click Here

This superior jQuery/javascript plugin is developed by atharvamh. For extra Advanced Usages, please go to the official website.

Related Posts

Iconpicker-Bootstrap-5

[Icon Picker] Iconpicker for Bootstrap 5 Icons Library

Bootstrap 5-based icon picker which supports any icon libraries like Bootstrap Icons, Font Awesome[fontawesome.com], etc. Must Read: 1000+ Pixel Perfect SVG Icons For Vue Components | Unicons How…

bootstrap-multiple-image-upload-with-preview

Bootstrap Multiple Image Upload with Preview and Delete | ImagesLoader

ImagesLoader is a standard bootstrap image upload plugin that provides an easy-to-use and nice-looking interface for uploading multiple images to a web server. Must Read: HTML 5…

Animating-Split-Flap-Displays-fallblatt

A Lightweight jQuery Plugin for Animating Split-Flap Displays | fallblatt

fallblatt is a lightweight jQuery plugin for animating split screens. This jQuery plugin allows you to include such offers in your web application. Everything from virtual departure…

bootstrap-5-dark-theme

Dark & Light Switch Mode Toggle for Bootstrap 5

Switching to dark mode is done by toggling HTML tags that include -dark or -light as a category. It is made by manipulating the DOM with JavaScript. The text color also changes depending…

jQuery-SyoTimer-Plugin

jQuery Plugin for Countdown Timer on HTML Page | SyoTimer

yoTimer jQuery plugin allows you to create digital style countdowns/periodic timers on the webpage, with callbacks support and timezone/translation customization. Features Periodic count with the specified period…

vue-js-periodic-table

Dynamic, Data-driven Periodic Table built with Vue.js

Periodicity is a dynamic, data-driven periodic table created with Vue.js that uses D3 animations and graphs to show the beauty of periodic trends. Built With vue.js (component…