• js+css实现自动切换的简洁选项卡


    <html>
    <head>
    <title>js+css实现自动切换的简洁选项卡_网页代码站(www.webdm.cn)</title>
    <style>
    .tab
    {width:100px;height:25px;background-color:#ccc;margin:0;padding:0;
    border-right
    :1px solid #666;}
    .tab_on
    {width:100px;height:25px;background-color:#eee;margin:0;padding:0;
    border-bottom
    :1px solid #666;
    border-top
    :1px solid #666;
    border-left
    :1px solid #666;}
    #show
    {
    width
    :200px;
    height
    :100px;
    background-color
    :#eee;
    border-bottom
    :1px solid #666;
    border-top
    :1px solid #666;
    border-right
    :1px solid #666;
    line-height
    :30px;
    }
    </style>
    <script language="javascript" type="text/javascript">
    <!--
    var n=1;
    var time=1000;
    var strArr=new Array();
    strArr[
    0]="webdm.cn";
    strArr[
    1]="高质量代码下载";
    strArr[
    2]="欢迎来到网页代码站";
    strArr[
    3]="精品网页代码";
    function init(){document.getElementById("show").innerHTML = strArr[0];}
    function show(){
    n
    =n>strArr.length?1:n;//如果n>数组长度 则重新赋值为1,以便程序循环
    for(i=1;i<(strArr.length+1);i++){//这里for用来改变当前tab的classname
    if(i==n) document.getElementById("tab_"+i).className = "tab_on";
    else document.getElementById("tab_"+i).className = "tab";
    }
    document.getElementById(
    "show").innerHTML = strArr[n-1];//现实数据
    n++;
    }
    setInterval(
    "show()",time);//隔一秒执行一次
    //
    -->
    </script>

    </head>
    <body onload="init()">
    <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#eeeeee">
    <tr>
    <td align="right">
    <div id="tab_1" class="tab_on">ASP</div>
    <div id="tab_2" class="tab" >PHP</div>
    <div id="tab_3" class="tab" >JSP</div>
    <div id="tab_4" class="tab">JAVA</div>
    </td>
    <td bgcolor="#eeeeee">
    <div id="show"></div>
    </td>
    </tr>
    </table>
    </body>
    </html>
    <br>
    <p>
    <a href="http://www.webdm.cn">网页代码站</a> - 最专业的代码下载网站 - 致力为中国站长提供有质量的代码!</p>


    文章来自:http://www.webdm.cn/webcode/7683d359-651b-4a11-9338-0dc94473f367.html

  • 相关阅读:
    20145316《信息安全系统设计基础》第七周学习总结
    20145316 许心远《信息安全系统设计基础》第六周学习总结
    20145316 《信息安全系统设计基础》第五周学习总结
    20145316 《信息安全系统设计基础》第二周学习总结
    面试之关系型数据库
    面试之网络基础
    Java 并发
    Scrapy 组件的具体用法
    Scrapy 框架入门
    Spring Security 介绍与Demo
  • 原文地址:https://www.cnblogs.com/webdm/p/1929438.html
Copyright © 2020-2023  润新知