热搜词
发表于 2012-2-6 00:44:57 | 显示全部楼层 |阅读模式
代码如下:
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>用jquery实现网页标签(tab)切换效果</title>
  6. <script type="text/javascript" src="jquery.min.js"></script>
  7. <script type="text/javascript">
  8. function SwapTab(name,title,content,Sub,cur){
  9.   $(name+' '+title).mouseover(function(){
  10.    $(this).addClass(cur).siblings().removeClass(cur);
  11.    $(content+" > "+Sub).eq($(name+' '+title).index(this)).show().siblings().hide();
  12.   });
  13. }
  14. $(function(){
  15. new SwapTab(".SwapTab","span",".tab-content","ul","fb");//排行TAB
  16. })
  17. </script>
  18. <style type="text/css">
  19. .tab span{ color:#2064ae;cursor: hand;!important;cursor: pointer}
  20. .hidden{display:none;}.invisible{visibility:hidden;}
  21. </style>
  22. </head>
  23. <body>
  24.             <span class="SwapTab tab"><span class="fb">tab1</span> | <span>tab2</span> | <span>tab3</span></span>
  25.             <div class="tab-content">
  26.             <ul>
  27.    tab1内容
  28.             </ul>
  29.             <ul class="hidden">
  30.    tab2内容
  31.             </ul>
  32.             <ul class="hidden">
  33.    tab3内容
  34.             </ul>
  35.             </div>
  36. </body>
  37. </html>
复制代码
下载附件:
tab切换效果.rar (24.2 KB, 下载次数: 539)
全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2025-1-16 03:39 , Processed in 0.222221 second(s), 36 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2025 Discuz! Team