我正在使用图像精灵进行按钮导航。我希望它们在被点击后保持“滚动”(即使在更改站点时)。当再次单击它们时,它们应该恢复正常。
我对javascript真的很陌生,但肯定有办法让它工作。
一个按钮如下所示:
<a class="contact" href="#" >Contact</a>
和 css,让它们滚动:
a.联系{
display: block;
width: 30px;
height: 31px;
margin-right:39px;
float:right;
background: url(../img/navcontact.png) no-repeat bottom;
text-indent: -10000px;
}
一:悬停。联系{
background-position: 0 0;
}