Print Text Character By Character At The Given Speed – jQuery selfw

Animation
Print Text Character By Character - jQuery selfw
File Size: 1.24 KB
Views Total: 1161 views
Last Update:January 14, 2020
Publish Date: March 14, 2017
Official Website: Go to website
License: MIT
Plugin Author: anndreyy
Demo    Download

A free jQuery Plugin with jQuery selfw is Typewriter effect plugin. Add you to print any text or character on the web screen at a fixed or random speed. Selfw is a plugin for jQuery to auto write character letter by letter.

How to used ?

Add the plugin file the selfw.js script after jQuery.

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

add the function on the existing text content and the plugin will do the rest.

<p id="text">
  Any Text Here
</p>
$(function(){
  $("#text").selfw()
});

define the text in the text parameter.

<p id="text">
  <!-- Empty Container -->
</p>
$(function(){
  $("#text").selfw({
    text: 'Your Text Here'
  })
});

 Change the typing speed.

$(function(){
  $("#text").selfw({
    time: 200,
  })
});

change randomly the speed of typing.

$(function(){
  $("#text").selfw({
    random: true
  })
});

Done

Thanks for make jQuery plugin is developed by anndreyy For more Helpfull for users, please check the demo page or visit the official website.
List Of Version :

Mady

Mady Schaferhoff is an expert jQuery script at jQuerypost. He offers web development services to clients globally. He also loves sharing Html,CSS, jQuery knowledge through blog posts like this one.