jQuery實(shí)現(xiàn)的背景動(dòng)態(tài)變化導(dǎo)航菜單效果
本文實(shí)例講述了jQuery實(shí)現(xiàn)的背景動(dòng)態(tài)變化導(dǎo)航菜單效果。分享給大家供大家參考。具體如下:
這里介紹一款使用jQuery插件制作完成的導(dǎo)航菜單,一大特點(diǎn)是,菜單的背景有動(dòng)態(tài)效果,與使用的背景圖片完全變換,動(dòng)態(tài)效果是在鼠標(biāo)懸停時(shí)出現(xiàn),也就是把鼠標(biāo)放在菜單上的時(shí)候,背景即開始滾動(dòng)起來,看上去漂亮極了,而且兼容性也是相當(dāng)不錯(cuò)的,推薦給網(wǎng)頁設(shè)計(jì)者使用。
運(yùn)行效果截圖如下:

在線演示地址如下:
http://demo.jb51.net/js/2015/jquery-bg-cha-menu-nav-codes/
具體代碼如下:
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery動(dòng)態(tài)背景的導(dǎo)航菜單</title>
<script type="text/javascript" src="jquery-1.6.2.min.js" charset="utf-8"></script>
<script type="text/javascript">
$(document).ready(function(){
var width = 0;
$('#menu li').each(function() {
width += $(this).width()+1;
});
var padding = parseInt((($('#menu').width() - width) / $('#menu li a').length)/2);
var pixLeft = ($('#menu').width() - width)-(padding*$('#menu li a').length*2)
$('#menu li a').each(function(index) {
if (index+1 != $('#menu li a').length) {
$(this).css('padding', '0 '+padding+'px');
$(this).css('background-position', '-' + $(this).position().left + 'px 0');
} else {
padding = padding + (pixLeft/2);
$(this).css('padding', '0 '+padding+'px');
$(this).css('background-position', '-' + $(this).position().left + 'px 0');
}
});
$('#menu li a').mouseover(function(){
$(this).stop().animate({ backgroundPosition: '-' + $(this).position().left - 129 + 'px 0'}, 2000)
.mouseout(function(){
$(this).stop().animate({ backgroundPosition: '-' + $(this).position().left + 'px 0'}, 2000)
})
});
});
(function($) {
if(!document.defaultView || !document.defaultView.getComputedStyle){ // IE6-IE8
var oldCurCSS = jQuery.curCSS;
jQuery.curCSS = function(elem, name, force){
if(name === 'background-position'){
name = 'backgroundPosition';
}
if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){
return oldCurCSS.apply(this, arguments);
}
var style = elem.style;
if ( !force && style && style[ name ] ){
return style[ name ];
}
return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force);
};
}
var oldAnim = $.fn.animate;
$.fn.animate = function(prop){
if('background-position' in prop){
prop.backgroundPosition = prop['background-position'];
delete prop['background-position'];
}
if('backgroundPosition' in prop){
prop.backgroundPosition = '('+ prop.backgroundPosition;
}
return oldAnim.apply(this, arguments);
};
function toArray(strg){
strg = strg.replace(/left|top/g,'0px');
strg = strg.replace(/right|bottom/g,'100%');
strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
}
$.fx.step. backgroundPosition = function(fx) {
if (!fx.bgPosReady) {
var start = $.curCSS(fx.elem,'backgroundPosition');
if(!start){//FF2 no inline-style fallback
start = '0px 0px';
}
start = toArray(start);
fx.start = [start[0],start[2]];
//var end = toArray(fx.options.curAnim.backgroundPosition);
var end = toArray(fx.options.curAnim == undefined ? fx.end : fx.options.curAnim.backgroundPosition);
fx.end = [end[0],end[2]];
fx.unit = [end[1],end[3]];
fx.bgPosReady = true;
}
//return;
var nowPosX = [];
nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];
fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];
};
})(jQuery);
</script>
<style type="text/css">
html {
height:100%;
min-height:100%;
}
body {
position:relative;
margin:0; padding:0;
font-size:1em;
font:62.8% Arial, Tahoma, Helvetica, sans-serif;
min-width:1130px;
min-height:100%;
height:100%;
background: #1e1e1d;
color:#FFFFFF;
}
h1, h2, h3, h4, h5, h6, form, fieldset, dl, ul {margin:0; padding: 0;}
strong, b {font-weight:bold;}
em, i {font-style:italic;}
small {display:block;}
fieldset {border:0;}
img {border:none;}
a {
color: #FFCC00;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:focus
{
outline-style: none;
}
.go_back {
position: absolute;
top: 15px; left: 240px;
color: #ff0072;
font-size: 1.6em;
}
#content {
position: relative;
top: 100px;
width:800px;
position:relative;
margin: 0 auto;
}
#menu {
float: left;
width: 800px;
list-style: none;
line-height: 33px;
background: url('images/menu_bg1.gif') no-repeat top left;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
margin: 0;
padding:0;
}
#menu li {
float: left;
border-left: 1px solid #000;
}
#menu li a {
float: left;
font-size: 1.2em;
color: #fff;
border-left: 1px solid #ccc;
text-decoration: none;
background: url('images/menu_bg1.gif') no-repeat top left;
}
#menu li a:hover {
background: url('images/menu_bg_active.gif') no-repeat top left;
}
#menu li:first-child { border: none; }
#menu li:first-child a { border: none; }
</style>
</head>
<body>
<div id="content">
<br />
<ul id="menu">
<li><a href="#" title="腳本下載">腳本下載</a></li>
<li><a href="#" title="網(wǎng)頁特效">網(wǎng)頁特效</a></li>
<li><a href="#" title="教程文章">教程文章</a></li>
<li><a href="#" title="編程類庫">編程類庫</a></li>
<li><a href="#" title="最新更新">最新更新</a></li>
</ul><br />
</div>
</body>
</html>
希望本文所述對(duì)大家的jquery程序設(shè)計(jì)有所幫助。
- jQuery ui實(shí)現(xiàn)動(dòng)感的圓角漸變網(wǎng)站導(dǎo)航菜單效果代碼
- jQuery漸變發(fā)光導(dǎo)航菜單的實(shí)例代碼
- jquery仿京東導(dǎo)航/仿淘寶商城左側(cè)分類導(dǎo)航下拉菜單效果
- 基于jquery實(shí)現(xiàn)導(dǎo)航菜單高亮顯示(兩種方法)
- jquery實(shí)現(xiàn)點(diǎn)擊向下展開菜單項(xiàng)(伸縮導(dǎo)航)效果
- jQuery仿京東商城樓梯式導(dǎo)航定位菜單
- jQuery實(shí)現(xiàn)的簡(jiǎn)潔下拉菜單導(dǎo)航效果代碼
- jquery實(shí)現(xiàn)無限分級(jí)橫向?qū)Ш讲藛蔚姆椒?/a>
- Jquery實(shí)現(xiàn)帶動(dòng)畫效果的經(jīng)典二級(jí)導(dǎo)航菜單
- jQuery實(shí)現(xiàn)的導(dǎo)航下拉菜單效果
- jQuery實(shí)現(xiàn)導(dǎo)航欄頭部菜單項(xiàng)點(diǎn)擊后變換顏色的方法
相關(guān)文章
jQuery實(shí)現(xiàn)一個(gè)簡(jiǎn)單的輪播圖
本文主要介紹了jQuery實(shí)現(xiàn)一個(gè)簡(jiǎn)單輪播圖的方法,具有很好的參考價(jià)值,下面跟著小編一起來看下吧2017-02-02
jquery+ajaxform+springboot控件實(shí)現(xiàn)數(shù)據(jù)更新功能
這篇文章主要介紹了jquery+ajaxform+springboot控件實(shí)現(xiàn)數(shù)據(jù)更新操作,使用jquery的ajaxform插件是一個(gè)比較不錯(cuò)的選擇。具體實(shí)現(xiàn)工程大家參考下本文2018-01-01
jquery 簡(jiǎn)單應(yīng)用示例總結(jié)
jquery 想必大家早已如雷貫耳,本文整理了一些在實(shí)際應(yīng)用中比較常見的功能片段,感興趣的朋友可以學(xué)習(xí)下哦,需要改進(jìn)的地方希望大家不惜指教2013-08-08
jquery實(shí)現(xiàn)點(diǎn)擊其他區(qū)域時(shí)隱藏下拉div和遮罩層的方法
這篇文章主要介紹了jquery實(shí)現(xiàn)點(diǎn)擊其他區(qū)域時(shí)隱藏下拉div和遮罩層的方法,涉及jQuery響應(yīng)鼠標(biāo)事件動(dòng)態(tài)改變頁面元素樣式的功能,需要的朋友可以參考下2015-12-12
很棒的學(xué)習(xí)jQuery的12個(gè)網(wǎng)站推薦
jQuery是目前最流行的 JavaScript 庫。對(duì)于初學(xué)者來說,有的時(shí)候很難找到一個(gè)好的學(xué)習(xí)jQuery的網(wǎng)站,今天本文收集了12個(gè)很棒的 jQuery 學(xué)習(xí)網(wǎng)站推薦給大家。2011-04-04
jQuery實(shí)現(xiàn)簡(jiǎn)單倒計(jì)時(shí)功能的方法
這篇文章主要介紹了jQuery實(shí)現(xiàn)簡(jiǎn)單倒計(jì)時(shí)功能的方法,涉及jQuery根據(jù)時(shí)間動(dòng)態(tài)操作頁面元素的相關(guān)技巧,需要的朋友可以參考下2016-07-07
jquery實(shí)現(xiàn)滑動(dòng)圖片自己測(cè)試的例子
最近使用jquery寫了一個(gè)圖片滑動(dòng)的插件,雖然還是有些問題存在,用法很簡(jiǎn)單,希望對(duì)大家有所幫助2013-11-11
從零開始學(xué)習(xí)jQuery (二) 萬能的選擇器
本章講解jQuery最重要的選擇器部分的知識(shí). 有了jQuery的選擇器我們幾乎可以獲取頁面上任意的一個(gè)或一組對(duì)象, 可以明顯減輕開發(fā)人員的工作量.2010-10-10

