charIterator (Simple animation)
Demonstrates usage with simple animation of the charIterator jQuery plugin.
by PeeHaa
HTML
<script src="https://github.com/downloads/PeeHaa/charIterator-jQuery-plugin/jquery-chariterator-min.0.1.js"></script>
<h1>charIterator <em>is</em> cool!</h1>
JavaScript
(function($) {
$('h1').charIterator({
animation: function(char) {
$(char).animate({
opacity: 0.1
}, 2000);
}
});
})(jQuery);