JQuery Animated Text

后端 未结 3 851
挽巷
挽巷 2021-02-15 19:39

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

相关标签:
3条回答
  • 2021-02-15 20:19

    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.

    0 讨论(0)
  • 2021-02-15 20:38

    Just use fadeIn jquery function (documentation):

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

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

    0 讨论(0)
  • 2021-02-15 20:41

    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/

    0 讨论(0)
提交回复
热议问题