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); 
});

そこでミリ秒を使用します..

これはanimateの構文です

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

速度は次のとおりです: 遅い/速い/ミリ秒

于 2013-03-19T05:03:43.260 に答える