JQuery Animated Text

后端 未结 3 1701
无人及你
无人及你 2021-02-15 20:12

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:44

    Just use fadeIn jquery function (documentation):

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

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

提交回复
热议问题