jquery仅用6行代码实现滑动门效果

 更新时间:2015年09月07日 15:51:57   作者:企鹅  
这篇文章主要介绍了jquery仅用6行代码实现滑动门效果,涉及jquery样式变换的实现技巧,非常简单实用,需要的朋友可以参考下

本文实例讲述了jquery仅用6行代码实现滑动门效果。分享给大家供大家参考。具体如下:

这是一个基于jQuery的滑动门导航栏,仅6行代码,不知还有没有比此更少的代码了,在滑动门的实现过程中,用背景图片修饰了每个“门”的背景,更美观漂亮,有着极好的用户操作体验。

运行效果如下图所示:

在线演示地址如下:

http://demo.jb51.net/js/2015/jquery-simple-nav-menu-style-codes/

具体代码如下:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery 6行代码实现滑动门</title>
<style>
*{margin:0; padding:0;font-family:"宋体",Arial, Helvetica, sans-serif; font-size:12px}
.ts{ width:50%; margin:0 auto}
.ts .tsHead{clear:both; height:27px;background:url(images/titLine.gif) repeat-x left bottom; border-left:1px solid #88AAD6; border-right:1px solid #88AAD6; border-top:1px solid #88AAD6}
.ts .titLeft{float:left; height:27px;font-size:1px; width:12px;;background:url(images/titLeft.gif) no-repeat}
.ts .titOp{float:left; height:21px; padding:5px 0 0}
.ts .titOp li{ float:left; width:100px;height:15px; padding:5px 0 0; margin:0 0 0 3px;border:1px solid #88AAD6; border-bottom:1px solid #fff;background:#eeeeff; color:#999;text-align:center; cursor:default}
.ts .titOp li.current{ background:#fff;color:#290052; }
.ts .titRight{float:right; height:26px;font-size:1px; width:32px;;background:url(images/titRight.gif) no-repeat}
.ts .line{border-left:1px solid #88AAD6;border-right:1px solid #88AAD6;clear:both; height:13px; line-height:13px; padding:5px; background:#E9F9FE}
.ts .tsMb{border:1px solid #88AAD6; border-top:none; padding:10px; height:120px; min-height:100px; font-weight:bold}
</style>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script>
$(function(){
  $("#tsMb div:not(:first)").hide();
  $("#titOp li").each(function(index){
    $(this).mouseover(
     function(){
     $("#titOp li.current").removeClass("current");
     $(this).addClass("current");
     $("#tsMb > div:visible").hide();
     $("#tsMb div:eq(" + index + ")").show();
    })
  })
})
</script>
</head>
<body>
 <div style="clear:both; height:30px"></div>
 <!--调试层-->
 <div class="ts">
     <div class="tsHead">
         <div class="titLeft"></div>
         <div class="titOp" id="titOp">
          <ul>
             <li class="current">脚本调试器</li>
             <li>样式调试器</li>
             <li>DOM调试器</li>
            </ul>
         </div>
         <div class="titRight"></div>
     </div>
     <div class="line">sadfasdfsd</div>
     <div class="tsMb" id="tsMb">
       <div>脚本</div>
       <div>样式</div>
       <div>DOM</div>
     </div>
 </div>
 <!--调试层 end-->
</body>
</html>

希望本文所述对大家的jquery程序设计有所帮助。

相关文章

  • jQuery前端开发35个小技巧

    jQuery前端开发35个小技巧

    这篇文章主要介绍了jQuery前端开发35个小技巧的相关资料,非常实用,需要的朋友可以参考下
    2016-05-05
  • JQUBar 基于JQUERY的柱状图插件

    JQUBar 基于JQUERY的柱状图插件

    用户可以通过鼠标拖拽柱状图从而改变每根柱子的高度,最终达到通过鼠标拖拽图形界面来修改服务器数据的目的。
    2010-11-11
  • 基于jquery的动画效果代码

    基于jquery的动画效果代码

    基于jquery的动画效果代码,挺有意思的,需要的朋友可以参考下
    2012-07-07
  • jquery命令汇总,方便使用jquery的朋友

    jquery命令汇总,方便使用jquery的朋友

    jquery命令汇总,方便使用jquery的朋友,需要的朋友可以收藏下
    2012-06-06
  • jQuery插件扩展操作入门示例

    jQuery插件扩展操作入门示例

    这篇文章主要介绍了jQuery插件扩展操作,结合简单实例形式分析了jQuery扩展方法的定义与使用技巧,非常简单易懂,需要的朋友可以参考下
    2017-01-01
  • jQuery插件Validate实现自定义校验结果样式

    jQuery插件Validate实现自定义校验结果样式

    这篇文章主要介绍了jQuery插件Validate实现自定义校验结果样式的方法,感兴趣的小伙伴们可以参考一下
    2016-01-01
  • javascript/jquery实现点击触发事件的方法分析

    javascript/jquery实现点击触发事件的方法分析

    这篇文章主要介绍了javascript/jquery实现点击触发事件的方法,结合具体实例形式分析了JavaScript与jQuery针对点击按钮触发事件的相关实现与使用技巧,需要的朋友可以参考下
    2019-11-11
  • jquery+h5实现九宫格抽奖特效(前后端代码)

    jquery+h5实现九宫格抽奖特效(前后端代码)

    这篇文章主要为大家详细介绍了jquery+h5实现九宫格抽奖特效,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-08-08
  • jquery插件实现图片对比

    jquery插件实现图片对比

    这篇文章主要为大家详细介绍了jquery插件实现图片对比,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-04-04
  • jQuery 3.0十大新特性

    jQuery 3.0十大新特性

    在2016年6月迎来了jquery3.0最终版,jquery3.0有哪些新特征呢?很多朋友不是很清楚,下面小编给大家带来了jQuery 3.0十大新特性,感兴趣的朋友一起看下吧
    2016-07-07

最新评论