Animated Typewriter Effect with jQuery - typer.js

File Size: 5.79KB
Views Total: 27604
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Animated Typewriter Effect with jQuery - typer.js

typer.js is a funny jQuery plugin that imitates typewriter typing with animation effect on the screen.

You might also like:

How to use it:

1. Include jQuery Library and typer.js

<script src='http://code.jquery.com/jquery-1.9.1.min.js'></script> 
<script src='jquery.typer.js'></script> 

2. Markup

<div id="typer">foo</div>

3. Call the plugin

<script>
            var win = $(window),
                foo = $('#typer');

            foo.typer(['TEXT A', 'TEXT B', 1337]);

 </script>

Change Log:

v0.0.4 (2013-03-24)

  • added afterAll callback

This awesome jQuery plugin is developed by yckart. For more Advanced Usages, please check the demo page or visit the official website.