jQuery仿Flash上下翻動的中英文導航菜單實例
更新時間:2015年03月10日 10:01:54 作者:hcqenjoy
這篇文章主要介紹了jQuery仿Flash上下翻動的中英文導航菜單,實例分析了jQuery實現Flash反動特效的技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了jQuery仿Flash上下翻動的中英文導航菜單的方法。分享給大家供大家參考。具體實現方法如下:
復制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery仿Flash鼠標感應式翻動的導航菜單</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
body{width:100%;height:100%;margin:0;padding:0;background:url(/jscss/demoimg/201007/bg.gif) repeat-x top center;font-size:12px;color:#616161;}
a,a:link,a:visited,a:active{color:#616161;text-decoration:none;}
a:hover{text-decoration:underline;color:#710075;}
#body{ width:100%;float:left;}
.index_top{width:930px;height:126px;position:relative;z-index:1;}
no-repeat 0 0;position:absolute;top:46px;left:41px;z-index:50;}
#index_nav{margin:82px 0;float:left;display:inline;}
#index_nav ul{float:left;height:34px;display:inline;margin:0 0 0 0px;list-style-type:none;}
#index_nav li{float:left;height:34px;width:100px;font-size:13px;font-family:Verdana;line-height:34px;text-align:center;cursor:pointer;color:#fff;}
#index_nav_cases a,#index_nav_cases a:link,#index_nav_cases a:visited,#index_nav_cases a:active{color:#fff;}
#index_nav_cases a:hover{text-decoration:none;}
#index_nav li div{height:34px;width:100px;overflow:hidden;position:relative;}
#index_nav li div .n1,#index_nav li div .n2{display:block;height:34px;width:100px;position:absolute;top:0px;left:0px;cursor:pointer;}
#index_nav li div .n1{z-index:12;background:url(/jscss/demoimg/201007/nav_bg.gif) repeat-x top center;font-size:13px;}
#index_nav li div .n2{z-index:11;background:url(/jscss/demoimg/201007/nav_bg.gif) repeat-x top center;}
#index_nav li div a{color:#fff;}
#index_nav li div a:hover{text-decoration:none;}
</style>
<script type="text/javascript" src="/ajaxjs/jquery1.3.2.js"></script>
<script type="text/javascript">
jQuery(function(){
jQuery('#index_nav li').hover(
function(){
jQuery(this).find('.n1').stop().animate({opacity:'0',top:'43px'});
},
function(){
jQuery(this).find('.n1').stop().animate({opacity:'1',top:'0px'});
}
);
});
</script>
</head>
<body>
<span style="color:#FFFFFF;"> 友情提示:若提示網頁有錯或看不到效果,請刷新網頁后再試!</span><br>
<div id="body">
<div id="index_content">
<div class="index_top">
<div id="index_nav">
<ul>
<li id="index_nav_about"><div><span class="n1">關 于</span><span class="n2">About</span></div></li>
<li id="index_nav_service"><div><span class="n1">服 務</span><span class="n2">Services</span></div></li>
<li id="index_nav_cases"><div><a href="#"><span class="n1">案 例</span><span class="n2">Cases</span></a></div></li>
<li id="index_nav_adva"><div><span class="n1">優(yōu) 勢</span><span class="n2">Advantages</span></div></li>
<li id="index_nav_contact"><div><span class="n1">聯 系</span><span class="n2">Contact</span></div></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>
希望本文所述對大家的jQuery程序設計有所幫助。
您可能感興趣的文章:
- jQuery實現Flash效果上下翻動的中英文導航菜單代碼
- 超炫的jquery仿flash導航欄特效
- 基于jquery1.4.2的仿flash超炫焦點圖播放效果
- 基于jQuery的仿flash的廣告輪播代碼
- 基于jQuery的仿flash的廣告輪播
- 基于Jquery的仿照flash放大圖片效果代碼
- jQuery實現的類flash菜單效果代碼
- jquery實現仿Flash的橫向滑動菜單效果代碼
- jquery+easeing實現仿flash的載入動畫
- flash+jQuery實現可關閉及重復播放的壓頂廣告
- php+flash+jQuery多圖片上傳源碼分享
- jQuery模擬完美實現經典FLASH導航動畫效果【附demo源碼下載】
相關文章
jQuery選擇器源碼解讀(五):tokenize的解析過程
這篇文章主要介紹了jQuery選擇器源碼解讀(五):tokenize的解析過程,本文用詳細的注釋解讀了tokenize方法的解析過程,需要的朋友可以參考下2015-03-03淺談jQuery的bind和unbind事件(綁定和解綁事件)
下面小編就為大家?guī)硪黄獪\談jQuery的bind和unbind事件(綁定和解綁事件)。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-03-03