Js导航条特效(鼠标移动,背景跟随)

liujieheng 2013-12-16

来源:flash,as,js兴趣爱好者Js导航条特效(鼠标移动,背景跟随)


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html class="no-js" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <meta name="keywords" content="JS代码,菜单导航,JS广告代码,JS特效代码" />
    <meta name="description" content="此代码内容为2款具有滑动效果的导航代码,属于flash技术网www.flash14.com,更多菜单导航代码请访问flash技术网www.flash14.comJS特效。" />
    <title>2款具有滑动效果的导航代码_flash技术网www.flash14.com</title>
    <style>
    *{margin:0;padding:0}
    body{font:14px Georgia}
    
    header{padding:100px 0 0 0;display:block}
    header h1{width:960px;margin:0 auto}
    a{color:#eee}
    a:hover{color:white}
    
    .nav-wrap{margin:50px auto;background-color:#666;border-top:2px solid #000;border-bottom:2px solid #000}
    
    /* Clearfix */
    .group:after{visibility:hidden;display:block;content:"";clear:both;height:0}
    *:first-child+html .group{zoom:1} /* IE7 */
    
    /* Example One */
    #example-one{margin:0 auto;list-style:none;position:relative;width:960px}
    #example-one li{display:inline-block}
    #example-one a{color:#bbb;font-size:14px;float:left;padding:6px 10px 4px 10px;text-decoration:none;text-transform:uppercase}
    #example-one a:hover{color:white}
    #magic-line{position:absolute;bottom:-2px;left:0;width:100px;height:2px;background:#fe4902}
    .current_page_item a{color:white !important}
    .ie6 #example-one li, .ie7 #example-one li{display:inline}
    .ie6 #magic-line {bottom:-3px}
    
    /* Example Two */
    #example-two{margin:0 auto;list-style:none;position:relative;width:960px}
    #example-two li{display:inline-block}
    #example-two li a{position:relative;z-index:200;color:#bbb;font-size:14px;display:block;float:left;padding:6px 10px 4px 10px;text-decoration:none;text-transform:uppercase}
    #example-two li a:hover{color:white}
    #example-two #magic-line-two{position:absolute;top:0;left:0;width:100px;background:#900;z-index:100;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}
    .current_page_item_two a{color:white !important}
    .ie6 #example-two li,.ie7 #example-two li{display:inline}
    </style>
    <script src='/function/js_function/jquery/jquery-1.7.2.js'></script>
    <script src='/function/js_function/jquery/jquery.color-rgba-patch.js'></script><script src='/function/js_function/texiao/daohang/example.js'></script>
    </head>
    <body>
    <div class="nav-wrap">
    <ul class="group" id="example-one">
    <li class="current_page_item"><a href="http://www.lanrentuku.com" target="_blank">Home</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Buy Tickets</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Group Sales</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Reviews</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">The Show</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Videos</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Photos</a></li>
    <li><a href="http://www.lanrentuku.com" target="_blank">Magic Shop</a></li>
    </ul>
    </div>
    
    <div class="nav-wrap">   
    <ul class="group" id="example-two">
    <li><a rel="#fe4902" href="http://www.lanrentuku.com" target="_blank">Home</a></li>
    <li><a rel="#A41322" href="http://www.lanrentuku.com" target="_blank">Buy Tickets</a></li>
    <li><a rel="#C6AA01" href="http://www.lanrentuku.com" target="_blank">Group Sales</a></li>
    <li><a rel="#900" href="http://www.lanrentuku.com" target="_blank">Reviews</a></li>
    <li><a rel="#D40229" href="http://www.lanrentuku.com" target="_blank">The Show</a></li>
    <li class="current_page_item_two"><a rel="#98CEAA" href="http://www.lanrentuku.com" target="_blank">Videos</a></li>
    <li><a rel="#1B9B93" href="http://www.lanrentuku.com" target="_blank">Photos</a></li>
    <li><a rel="#8DC91E" href="http://www.lanrentuku.com" target="_blank">Magic Shop</a></li>
    </ul>
    </div>
    
    <!-- 代码结束 -->    
    </body>
    </html>

u013680195 2014-04-02
CSS基础教程17篇

此教程共17篇,由浅到深、循序渐进的讲述CSS知识。
对初学者有很大的学习价值,对已入门的朋友也有重要的参考价值。

1、CSS的应用
http://www.weby.com.cn/view.asp?id=13

2、CSS Selectors,Properties,and Values 选择器 、属性、值
http://www.weby.com.cn/view.asp?id=14

3、CSS的color颜色
http://www.weby.com.cn/view.asp?id=15

4、CSS的Text 文本
http://www.weby.com.cn/view.asp?id=16

5、Margin和Padding
http://www.weby.com.cn/view.asp?id=17

补充:CSS盒模型(Box Model)问题详解
http://www.weby.com.cn/view.asp?id=18

6、CSS的Border边框
http://www.weby.com.cn/view.asp?id=19

7、CSS属性结合起来使用
http://www.weby.com.cn/view.asp?id=20

8、CSS的Class以及ID选择器
http://www.weby.com.cn/view.asp?id=21

9、CSS的Grouping and Nesting分组和嵌套
http://www.weby.com.cn/view.asp?id=22

10、CSS的Pseudo Classes 伪类
http://www.weby.com.cn/view.asp?id=23
11、CSS的属性缩写
http://www.weby.com.cn/view.asp?id=24

12、CSS的Background Images 背景图片
http://www.weby.com.cn/view.asp?id=25

13、CSS的display属性
http://www.weby.com.cn/view.asp?id=26

14、CSS网页布局Page Layout
http://www.weby.com.cn/view.asp?id=27

15、CSS的At-Rules@规则
http://www.weby.com.cn/view.asp?id=28

16、CSS的伪元素Pseudo Elements
http://www.weby.com.cn/view.asp?id=29

17、CSS的优先级特性Specificity 
http://www.weby.com.cn/view.asp?id=30
Global site tag (gtag.js) - Google Analytics