本文实例讲述了jQuery实现带滚动线条导航效果的方法。分享给大家供大家参考。具体分析如下:
最早见到这种导航是在魅族的官网,当时(去年)觉得挺不错的但自己不会JavaScript,因此那时“可望而不可及”。今日去手机QQ for Android官网,又发现类似这样的导航,反正自己也没啥事,所以就尝试用jQuery做出这样的效果。
效果如下:
首页 说说 日志 相册
CSS:
<div class="jb51code">
<pre class="brush:css;">
body,ul,li{margin:0;padding:0;}
testnav{;height:80px;background:#333;}
.testmenu{width:320px;padding-top:45px;margin:0 auto;}
.testBox div{float:left;width:80px;height:30px;text-align:center;}
.testBox a{color:#ccc;text-decoration:none;font:700 12px/1 "宋体";}
.testBox a:hover{color:#CCEEFF;text-decoration:underline;}
.testline-Box{width:100%;background:#eee;}
.testline{display:block;height:3px;width:80px;background:#999;}