zoukankan      html  css  js  c++  java
  • Jquery 简单的Tab选项卡特效

    <!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>TAB特效</title>
    <script type="text/javascript" src="jquery-1.9.1.min.js"></script>
    </head>
    
    <body>
    <style type="text/css">
        *{padding:0; margin:0;}
        ul,ol{list-style-type:none;}
        
        body{font-size:12px;}
        .tab_box{width:500px; border:1px solid #000; margin:100px auto 0px  auto;}
        .tab_box ul{width:80px; height:400px; background-color:#eee; display:block; float:left;}
        .tab_box ul li{display:block; width:100%; height:40px; line-height:40px; text-align:center; background-color:#bbb; margin-top:10px; cursor:pointer;}
        .tab_box ul .tab_one{background-color:#abcdef;}
        .tab_span{width:410px; height:400px; overflow:hidden; border:1px solid #000; margin-left:5px; float:right;}
        .tab_span_c{width:100%; height:100%; background-color:#ccc; display:none;}
         
    </style>
        <script type="text/javascript">
            $(document).ready(function(){
            $(".tab_box .tab_span .tab_span_c:first").css("display","block");
            $(".tab_box ul li").click(function(event){
                var $btnlistindex = $(this).index();
                    $(".tab_box .tab_span .tab_span_c").eq($btnlistindex).show().siblings().hide();
                    $(".tab_box ul li").eq($btnlistindex).addClass("tab_one").siblings().removeClass("tab_one");
                    });
            });
        </script>
        <div class="tab_box">
            <ul>
                <li class="tab_one">选项按钮1</li>
                <li>选项按钮2</li>
                <li>选项按钮3</li>
                <li>选项按钮4</li>
                <li>选项按钮5</li>
            </ul>
            <div class="tab_span">
                <div class="tab_span_c">
                    1sadfasdfasdf1sadfasdfasdf1sadfasdfasdf
                </div>
                <div class="tab_span_c">
                    2sadfasdfasdf1sadfasdfasdf1sadfasdfasdf
                </div>
                <div class="tab_span_c">
                    3sadfasdfasdf1sadfasdfasdf1sadfasdfasdf
                </div>
                <div class="tab_span_c">
                    4sadfasdfasdf1sadfasdfasdf1sadfasdfasdf
                </div>
                <div class="tab_span_c">
                    5sadfasdfasdf1sadfasdfasdf1sadfasdfasdf
                </div>
            </div>
        </div>
        
    
    </body>
    </html>

    最终效果如下:

  • 相关阅读:
    xftp无法用root账号登录问题
    jenkins上gradle打包
    jenkins登录后页面显示为空的问题
    sql 修改oracle数据库中某个字段的部分内容
    redis安装及报错处理
    Centos7 firewall-cmd not found
    ftp connect: No route to host 解决方案
    反向代理负载均衡之Apache
    centos7 openldap双主部署
    apache安装以及报错处理
  • 原文地址:https://www.cnblogs.com/flay/p/3850942.html
Copyright © 2011-2022 走看看