$("#link").hover(function() {
$(this).animate({color: "black"}, "slow");
}, function() {
$(this).animate({color: "white"}, "slow");
});
助言がありますか?css hover プロパティを使用して、リンクをすぐにではなくゆっくりとアニメーション化する必要があります。
$("#link").hover(function() {
$(this).animate({color: "black"}, "slow");
}, function() {
$(this).animate({color: "white"}, "slow");
});
助言がありますか?css hover プロパティを使用して、リンクをすぐにではなくゆっくりとアニメーション化する必要があります。
「遅い」でも使用できます-
$("#link").hover(function(){
$(this).animate({ color: '#fed900'}, "slow");
}, function() {
$(this).animate({ color: '#000000'}, "slow");
});
$("#link").hover(function(){
$(this).animate({ color: '#3d3d3d'}, 4000);
}, function() {
$(this).animate({ color: '#000000'}, 4000);
});
そこでミリ秒を使用します..
これはanimateの構文です
$(selector).animate({params},speed,callback);
速度は次のとおりです: 遅い/速い/ミリ秒