Howdy_McGee
Howdy_McGee

Reputation: 10635

JQuery Animated Text

It is ridiculously hard to find easy/simple animated text. Like the "Implosion" on this website http://codecanyon.net/item/jquery-text-animation/full_screen_preview/233445 but I'd have to pay for it. Actually any kind of simple onclick text fade in would be very cool. Any suggestions, links, or help?

Upvotes: 8

Views: 7146

Answers (3)

Hirvesh
Hirvesh

Reputation: 7982

Try Textillate.js! It allows you to animate text with effects such as flash, bounce, shake and more. In all, Textillate.js contains more than 25 effects for you to apply to your text.

Upvotes: 0

Dr.Molle
Dr.Molle

Reputation: 117314

Its not so hard to create such an effect using jQuery. Create a single element vor every character, move it somewhere and then animate it back to original position.

A simple example: http://jsfiddle.net/doktormolle/dNXVx/

Upvotes: 14

ariel
ariel

Reputation: 16150

Just use fadeIn jquery function (documentation):

$("#button").click(function() {$("#container").fadeIn()});

Sample: http://jsfiddle.net/cVELa/

Upvotes: 3

Related Questions