4
$("#link").hover(function() {
    $(this).animate({color: "black"}, "slow");
}, function() {
    $(this).animate({color: "white"}, "slow");
});

有什么建议么?我希望链接缓慢而不是立即使用 css hover 属性进行动画处理。

4

2 回答 2

1

您甚至可以使用“慢”-

$("#link").hover(function(){
  $(this).animate({ color: '#fed900'}, "slow");
}, function() {
  $(this).animate({ color: '#000000'}, "slow"); 
});

演示

于 2013-03-19T05:15:00.607 回答
0
    $("#link").hover(function(){
  $(this).animate({ color: '#3d3d3d'}, 4000);
}, function() {
  $(this).animate({ color: '#000000'}, 4000); 
});

在那里使用毫秒..

这是动画的语法

$(selector).animate({params},speed,callback);

速度可以是:慢/快/毫秒

于 2013-03-19T05:03:43.260 回答