jQuery 関数 .animate を使用して、ナビゲーション リンクを 1 つずつ強調表示しています。彼らはULにいます。各アイテムを個別に強調表示する必要がないようにコードを短くする方法があるかどうか疑問に思っているだけですが、これを機能させることができます。前もって感謝します
$(document).ready(function(){
$('#button1').mouseenter(function(){
$(this).animate({
color:"#FFFFFF",
backgroundColor: "#FF9B05"
});
});
$('#button1').mouseleave(function(){
$(this).animate({
color:"#FF9B05",
backgroundColor: "#FFFFFF"
});
});
$('#button2').mouseenter(function(){
$(this).animate({
color:"#FFFFFF",
backgroundColor: "#FF9B05"
});
});
$('#button2').mouseleave(function(){
$(this).animate({
color:"#FF9B05",
backgroundColor: "#FFFFFF"
});
});
$('#button3').mouseenter(function(){
$(this).animate({
color:"#FFFFFF",
backgroundColor: "#FF9B05"
});
});
$('#button3').mouseleave(function(){
$(this).animate({
color:"#FF9B05",
backgroundColor: "#FFFFFF"
});
});
$('#button4').mouseenter(function(){
$(this).animate({
color:"#FFFFFF",
backgroundColor: "#FF9B05"
});
});
$('#button4').mouseleave(function(){
$(this).animate({
color:"#FF9B05",
backgroundColor: "#FFFFFF"
});
});
});