JQuery Animated Text

我只是一个虾纸丫 提交于 2019-12-09 10:42:43

问题


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?


回答1:


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/




回答2:


Just use fadeIn jquery function (documentation):

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

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




回答3:


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.



来源:https://stackoverflow.com/questions/6538546/jquery-animated-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!