如题。
使用jQuery animate的方法能够对某一个元素的css属性执行渐变效果。
执行语句:
$("元素(class或ID)").css({属性初始状态}).stop().animate({元素结束状态}, { duration: 持续时间 });
使用这个语句基本上可以实现很多效果。
例如,让元素从透明到不透明。
$("#to-cpu").css({ opacity: 0}).stop().animate({opacity: 1 }, { duration: 400 });
$("#to-cpu").css({left:414}).stop().animate({left:0 }, { duration: 400 });