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">优 势</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.uploadify插件在chrome浏览器频繁崩溃解决方法
这篇文章主要介绍了jquery.uploadify插件在chrome浏览器频繁崩溃解决方法,十分的实用,遇到相同问题,需要解决的朋友可以参考下2015-03-03jQuery.Autocomplete实现自动完成功能(详解)
本篇文章除了介绍jquery.autocomplete基本参数外,主要说明jquery.autocomplete的数据源的格式问题。2010-07-07在easyUI开发中,出现jquery.easyui.min.js函数库问题的解决办法
easyUI是jquery的一个插件,是民间的插件,easyUI使用起来很方便,里面有网页制作的最重要的三大方块:javascript代码、html代码和Css样式,但是很容易出现jquery.easyui.min.js函数库问题,小编教大家如何解决问题,需要的朋友可以参考下2015-09-09
最新评论