• 选项卡效果


    选项卡效果:

    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <style type="text/css">
    *{ margin:0px auto; padding:0px;}
    #wai{ 100%; height:500px; margin-top:30px;}
    #top{ 100%; height:50px;}
    #bottom{ 100%; height:450px}
    .item{ 100px; height:50px; float:left; text-align:center; vertical-align:middle; line-height:50px;}
    .neirong{ 100%; height:450px;}
    #a{background-color:red}
    #b{display:none;background-color:green;}
    #c{display:none;background-color:blue;}
    </style>
    </head>
    
    <body>
    
    <div id="wai">
        <div id="top">
            <div class="item" style="background-color:red" guanlian="a">红界面</div>
            <div class="item"  guanlian="b">绿界面</div>
            <div class="item" guanlian="c">蓝界面</div>
        </div>
        <div id="bottom">
            <div class="neirong" id="a" ys="red" ></div>
            <div class="neirong" id="b" ys="green" ></div>
            <div class="neirong" id="c"  ys="blue"></div>
        </div>
    </div>
    
    <script type="text/javascript">
    var ys;
    var items = document.getElementsByClassName("item");
    for(var i=0;i<items.length;i++){
        items[i].onclick = function(){
            for(var i=0;i<items.length;i++){
                items[i].style.backgroundColor = "white";     //让其余的元素还原
            }
            
            //内容切换
            var id = this.getAttribute("guanlian");
            var nr = document.getElementsByClassName("neirong");
            for(var i=0;i<nr.length;i++){
                nr[i].style.display = "none";
            }
            document.getElementById(id).style.display = "block";
            ys = document.getElementById(id).getAttribute("ys");   //取出这个元素的颜色
            
            this.style.backgroundColor = ys;   //让头变成相应的颜色
        }
    }
    
    </script>
    </body>
    </html>

    效果图

  • 相关阅读:
    利用border制作三角形原理
    JavaScript中null和undefined
    localStorage 如何存储JSON数据并读取JSON数据
    常见的几种浏览器内核简单介绍
    关于Banner设计的促销氛围
    分数分配
    餐饮管理系统
    餐馆管理之点菜
    餐饮管理之结账
    餐饮管理之菜品管理
  • 原文地址:https://www.cnblogs.com/Whitehat/p/8048125.html
Copyright © 2020-2023  润新知