特效介绍
背景跟随鼠标移动的网页导航jQuery代码,导航的背景会跟着鼠标移动,并会动态的左右晃动,渐渐停止。
使用方法
1、JS代码:
02 |
<script type= "text/javascript" src= "js/jquery.plugins.js" ></script> |
03 |
<script type= "text/javascript" > |
08 |
click: function (event, menuItem) { |
15 |
<style type= "text/css" > |
16 |
.meun_bg{background:none!important; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src= 'images/image87.png' ,sizingMethod= 'crop' )} |
2、CSS代码:
01 |
<style type= "text/css" > |
02 |
*{ margin : 0 ; padding : 0 ; list-style-type : none ;} |
05 |
.meun{ position : relative ; height : 68px ; width : 967px ; padding-left : 13px ; background : url (images/meun_bg.png) no-repeat 0 8px ; overflow : hidden ; margin : 40px auto ;} |
06 |
.meun_bg{ position : absolute ; top : 0px ; left : 0px ; background : url (images/image 87 .png) no-repeat ; height : 8px ; width : 980px ; overflow : hidden ;} |
08 |
.meun li.back{ background : url (images/meun_tab.png) no-repeat ; padding-left : 8px ; height : 68px ; overflow : hidden ; z-index : 8 ; position : absolute ;} |
09 |
.meun li.back . left { background : url (images/meun_tab.png) no-repeat right 0 ; height : 68px ; float : right ; width : 8px ;} |
10 |
.meun li.back .arrow{ float : left ; width : 92% ; height : 68px ; position : relative ;} |
11 |
.meun li.back .arrow . icon { position : absolute ; top : 56px ; left : 45% ; background : url (images/arrow.gif) no-repeat ; height : 5px ; width : 9px ; overflow : hidden ;} |
12 |
.meun li a{ font-family : "微软雅黑" , "黑体" ; text-decoration : none ; color : #fff ; font-size : 18px ; z-index : 10 ; display : block ; float : left ; position : relative ; overflow : hidden ; padding : 25px 33px 0 ; height : 43px ;} |
13 |
.meun li a span{ cursor : pointer ;} |
3、HTML代码:
02 |
< div class = "meun_bg" ></ div > |
注:<li class="current">表示当前背景在哪里。例如,如果在首页,请在首页的li添加样式current。