Text Animation Effect with jQuery - animateText.js

File Size: 1.44 KB
Views Total: 10114
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Text Animation Effect with jQuery - animateText.js

animateText.js is a small and easy-to-use jQuery Text Plugin that allows you to create animated texts on your website to grab your visitor's attention.

Basic Usage:

1. Include jQuery Library and animateText.js

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="animateText.min.js"></script>

2. Markup

<ul id="example"><li>Kaboom!</li></ul>

3. Call the plugin

<script type="text/javascript">
    $("#example").animateText([
            {
                offset: 0,
                duration: 1000,
                animation: "explode"
            }
    ]);
</script>

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