用到的背景图片
代码如下,一定要引用jQuery132.js库哦,别的也可以
$(function() {
$("ul>li").click(function() {
$("ul>li").each(function() { $(this).removeClass("_lishow"); });
$(this).addClass("_lishow");
});
});
ul
{
list-style-type: none;
border: 0px blue solid;
height: 27px;
width: 480px;
}
ul li
{
list-style-type: none;
float: left;
width: 74px;
height: 27px;
line-height: 27px;
text-align: center;
background-color: #CCCCFF;
background: url(../images/tab.gif);
background-position: -74px 0px;
}
ul li:hover
{
cursor: pointer;
}
._lishow
{
background: url(../images/tab.gif);
background-position: 0px 0px;
}
Menu1
Menu2
Menu3
Menu4
Menu5
Menu6
|