我希望将以下 Jquery Snippet(悬停时的颜色淡入)与我位于http://www.threecell.com/demo的 WordPress 网站合并。根据我如何将其适应当前菜单标签结构,该代码包含在下面。我已经在我的 functions.php 文件中加载了 Jquery。
$(document).ready(function(){
//Set the anchor link opacity to 0 and begin hover function
$("#menu-sample-menu li a").hover(function(){
//Fade to an opacity of 1 at a speed of 200ms
$(this).fadeOut(0).addClass('hover').fadeIn(300);
//On mouse-off
}, function(){
//Fade to an opacity of 0 at a speed of 100ms
$(this).fadeOut(300)
.queue(function(){ $(this).removeClass('hover').fadeIn(0).dequeue() });
});
});
相关的菜单样式包括在这里:
#access {
padding:0 20px;
background:#111;
box-shadow:0 0 7px rgba(0, 0, 0, .1);
}
#access ul {
float:left;
padding:0;
margin:0;
list-style:none;
font-weight:600;
text-transform:uppercase;
}
#access li {
position:relative;
float:left;
padding:0;
margin:0;
}
#access ul li:first-child {
padding-left:0;
}
#access a {
display:block;
padding:15px 24px;
color:#f0f0f0;
text-decoration:none;
}
#menu-sample-menu li {
color: black;
text-shadow: 0px 1px 4px #777;
background-color: green;
padding: 0 12px 0 12px;
}
#menu-sample-menu li a.hover {
background: orange;
}
#access li.current_page_item > a,
#access li.current-menu-item > a {
background: orange;
color: white;
text-decoration:none;
}
#access a span {
color:#999;
font-size:11px;
font-style:italic;
font-weight:normal;
line-height:1.62em;
text-transform:none;
}
到目前为止,悬停状态没有被触发。任何帮助或指导将不胜感激。
最好的祝福,
吨