我第一次使用coda 滑块制作了一个 jquery 滑块。
但我想自定义菜单,我想要一个小箭头,当你悬停它并且它处于活动状态时,它会显示在li a的顶部。
我将如何做到这一点?我应该使用图像吗?或者我可以使用css3实现效果吗?
<ul class="navigation">
<li><a href="#sites">Sites</a></li>
<li><a href="#files">Files</a></li>
<li><a href="#editor">Editor</a></li>
<style>
.navigation {
padding:0px;
margin-bottom:90px;
}
ul.navigation li {
list-style-type:none;
}
ul.navigation li a {
text-decoration:none;
float:left;
width:254px;
height:50px;
display:block;
background-color:#ccc;
text-align:center;
line-height:40px;
}
ul.navigation li a:hover {
background-color:#666;
/*there should be some sort of background image here or css3? */
}
.active {
/*there should be some sort of background image here or css3? */
}
<style>