出于某种原因,我无法让悬停效果起作用 HTML:
<div id="navbarcontainer">
<ul>
<li id="left" class="current">
<a id="current">Home</a></li>
<li class="dependant1">
<a id="dependant1">Services</a></li>
<li id="right" class="dependant2">
<a id="dependant2">Contact</a></li>
</ul>
</div>
CSS:
#navbarcontainer {
margin: 0;
padding: 0;
height: 50px;
background: #01216D;
}
#navbarcontainer ul {
clear: both;
margin: 0;
padding: 0;
list-style: none;
}
#navbarcontainer li {
display: inline-block;
height: 50px;
width: 100px;
list-style: none;
text-align: center;
-moz-transition: .5s;
-o-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
/* Firefox 4 */
/* Opera */
/* Safari and Chrome */
}
#navbarcontainer ul li a {
text-decoration: none;
line-height: 50px;
width: 100px;
font-size: 20px;
font-family: Calibri;
cursor: pointer;
}
#left {
margin-right: 40px;
margin-left: 20px;
}
#right {
margin-left: 40px;
}
.current {
background: #fff;
}
#current {
color: #01216D;
font-weight: bold;
}
#dependant1, #dependant2 {
color: #fff;
}
jQuery的:
$("#dependant1").hover(function () {
$('.dependant1').stop().animate({background: '#fff' }, "slow");
$('#dependant1').stop().animate({color: '#01216D', 'font-weight': 'bold'}, "slow");
}, function () {
$('.dependant1').stop().animate({ background: 'none' }, "slow");
$('#dependant1').stop().animate({color: '#fff', 'font-weight': 'normal'}, "slow");
});
我觉得它与jQuery有关,但我在document.load中有它,所以我不明白为什么它不起作用。
答案 0 :(得分:1)
您需要在jQuery
之后加jQuery UI Library
:
的 LIVE DEMO 强>
$("#navbarcontainer li").hover(function () {
$(this).find('a').stop().animate({ color: '#01216D', backgroundColor: '#fff'}, 800);
}, function () {
$(this).find('a').stop().animate({ color: '#fff', backgroundColor: '#01216D'}, 800);
});
HTML:
<div id="navbarcontainer">
<ul>
<li><a id="current">Home</a></li>
<li><a>Services</a></li>
<li><a>Contact</a></li>
</ul>
</div>
CSS:
#navbarcontainer {
margin: 0;
padding: 0;
background: #01216D;
}
#navbarcontainer ul {
clear: both;
margin: 0;
padding: 0;
list-style: none;
overflow:hidden;
}
#navbarcontainer li {
list-style: none;
text-align: center;
-moz-transition: .5s;
-o-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
}
#navbarcontainer ul li a {
float:left;
color:#fff;
background: #01216D;
padding:10px 30px;
text-decoration: none;
line-height: 50px;
font-size: 20px;
font-family: Calibri;
cursor: pointer;
}
#current {
background: #fff !important;
color: #01216D !important;
font-weight: bold;
}
或另一个脚本:
$("#navbarcontainer li").on('mouseenter mouseleave',function ( e ) {
var set = e.type=='mouseenter' ? {c:"#01216D", bg:"#fff"} : {c:"#fff", bg:"#01216D"} ;
$('a', this).stop().animate({ color: set.c, backgroundColor: set.bg}, 800);
});
答案 1 :(得分:1)
在你的标签CSS
中试试这个#navbarcontainer ul li a {
display: block;
height: 50px;
text-decoration: none;
line-height: 50px;
width: 100px;
font-size: 20px;
font-family: Calibri;
cursor: pointer;
}
答案 2 :(得分:1)
您正试图为背景颜色和文本颜色设置动画,这是单独使用jQuery无法做到的。要在您的描述中实现您在上面尝试执行的操作,您需要包含颜色动画插件available here。
在您包含之后,您的代码应该按预期工作。
修改强>
请参阅此Fiddle example并附上插件。
$('#color').on('click',function(){
$(this).animate({backgroundColor:'#400101', color:'#fff'});
});
答案 3 :(得分:1)
你需要一个带有jQuery的library to animate color,你需要为背景颜色设置动画而不是背景,当你渐渐回归时,你需要淡化为蓝色,而不是没有。
这个小提示显示你的演示工作:http://jsfiddle.net/Mbppv/
以下是我将你的js更改为:
$("#dependant1").hover(function () {
$('.dependant1').stop().animate({"background-color": '#fff' }, "slow");
$('#dependant1').stop().animate({color: '#01216D', 'font-weight': 'bold'}, "slow");
}, function () {
$('.dependant1').stop().animate({"background-color": '#01216D' }, "slow");
$('#dependant1').stop().animate({color: '#fff', 'font-weight': 'normal'}, "slow");
});
另请参阅有关动画颜色的相关文章:jQuery animate backgroundColor
答案 4 :(得分:0)
您可以使用CSS伪类hover
向元素添加悬停效果。将此样式添加到CSS文件时,红色背景应用于悬停时的li
:
li.dependant1:hover {
background-color: red;
}