我有这个HTML代码
<nav id="mainNav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
它具有此
的CSS样式 #mainNav { display:block; padding:5px; }
#mainNav ul { display:block; list-style-type:none; width:500px; border-collapse:collapse; }
#mainNav li { display:inline-block; width:100px; height:66px; text-align:center; padding-top:10px; float:left; background-color:gray; cursor:pointer; border-bottom:0px solid red; }
#mainNav a { color:white; text-decoration:none; text-transform:capitalize; }
#mainNav a.aHover { color:red; }
附加到这是JQuery代码
$(document).ready(function() {
$('#mainNav li').mouseover(function() {
var el = $(this);
$(this).animate({
"border-bottom-width":"+=5px"
},{ queue: false, duration: 500 }, function() {
el.css('border-bottom-width', '5px');
});
$(this).children('a').addClass('aHover');
});
$('#mainNav li').mouseout(function() {
var el = $(this);
$(this).animate({
"border-bottom-width":"-=5px"
},{ queue: false, duration: 500 }, function() {
el.css('border-bottom-width', '0px');
});
$(this).children('a').removeClass('aHover');
});
});
现在我想要它做的是,将边框颜色淡入红色并淡出它,或者如代码所示,在悬停时将边框扩展到最大5px然后将边框放回到0px。
问题是,正如您所看到的,我尝试在动画结束时更改LI元素的类,以确保边框达到最大或最小宽度,但这不起作用,为什么?
你如何淡化和淡出边框颜色?
答案 0 :(得分:4)
尝试以下,
$(document).ready(function() {
$('#mainNav li').hover(function() {
var el = $(this);
$(this).stop(true, true).animate({
"border-bottom-width": "5px"
}, {
queue: false,
duration: 500
});
$(this).children('a').addClass('aHover');
}, function() {
var el = $(this);
$(this).stop(true, true).animate({
"border-bottom-width": "0px"
}, {
queue: false,
duration: 500
});
$(this).children('a').removeClass('aHover');
});
});
更改,
mouseover
事件发送至mouseenter
,因为它更适合您的情况mouseenter/mouseleave
更改为hover
+=5px
,-=5px
更改为5px
和0px
。.stop(true, true)
以确保动画已完成且队列已清除。