I’m not familiar with CSS3 animation, but i do want to add some CSS3 animation to my web elements, could you please show me some way to do css3 animation in a quick way? for example, do we have some jquery plugin to do css3 animation? thanks!
Share
Acutally i know some very good CSS3 animation file which name is animate.CSS, it can quickly help you to add css animation to your element. you can use jquery addClass method to add anmition on the fly as below:
$(‘#somediv’).addClass(‘animate fadeInRightBig’);
then youo can make the div anmiated with fadeIn effect. it supports up to 60 different effect, i’m sure you can find the ones you need. you may check ou this little game demo which is developed by animate.css. Hope you will like it!