天天看点

雪花飘落的效果。animate的使用

animate(css样式,速度,运动方式,运动后执行的函数)

改变多个css的样式:

$(

"p"

).css({

"background-color"

:

"blue"

,

"font-size"

:

"14px"

});

或者

$(

"p"

).css({

backgroundColor

:

"blue"

,

fontSize

:

"14px"

});

例如:

$(".a").click(function(){

     $("p").animate({fontSize:"10px",color:"red"},1000,"linear",function(){

          $(this).remove();

     })

})