• 【教程】简单滑动门代码


    代码简介:

    一个通用型CSS+JavaScript滑动门封装类,风格属简洁型,当然,颜色和样式你可以自己修改。

    代码内容:

    <!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=gb2312" />
    <title>【教程】简单滑动门代码_网页代码站(www.webdm.cn)</title>
    <style type="text/css">
    <!--
    body{margin:0px;padding:0px;font-size:12px;background:#eee;line-height:20px;}
    .bodyer{760px;margin:20px auto auto;border:1px dotted #ccc;background:#fff;}
    .t_rt{text-align:right;}
    h1,h2,h3,h4,h5,h6{font-weight:bold;margin:0px;padding:0px;font-size:12px;}
    ul,li{margin:0px;padding:0px;}
    li{list-style-type:none;}
    h1{margin:10px;padding-right:10px;padding-bottom:5px;border-bottom:1px dotted #ccc;}
    .preview{margin:10px;padding:10px;overflow:hidden;background:#eee;}
    .cont{padding:10px;}
    .cls{clear:both;}
    .hidden{display:none;}
    #sourse{border:1px dotted #ccc;600px;height:300px;margin:0px auto;}
    .textDiv{margin:10px 40px 10px;text-align:center;}
    h2{margin:0px 10px;background:#ccc;padding:5px;}
    .example{margin:10px;background:#FFF;border:1px dotted #ccc;padding:10px;}
    .scrolldoorFrame{400px;margin:0px auto;overflow:hidden;}
    .scrollUl{400px;border-bottom:1px solid #CCC;overflow:hidden;height:35px;}
    .scrollUl li{float:left;}
    .bor03{border:1px solid #ccc;border-top-0px;}
    .sd01{cursor:pointer;border:1px solid #CCC;background:#FFF;margin:5px;padding:2px;font-weight:bold;}
    .sd02{cursor:pointer;border:0px solid #CCC;margin:5px;padding:2px;}
    -->
    </style>
    <script type="text/javascript">
    function scrollDoor(){
    }
    scrollDoor.prototype = {
    sd : function(menus,divs,openClass,closeClass){
    var _this = this;
    if(menus.length != divs.length)
    {
    alert("菜单层数量和内容层数量不一样!");
    return false;
    }
    for(var i = 0 ; i < menus.length ; i++)
    {
    _this.$(menus[i]).value = i;
    _this.$(menus[i]).onmouseover = function(){
    for(var j = 0 ; j < menus.length ; j++)
    {
    _this.$(menus[j]).className = closeClass;
    _this.$(divs[j]).style.display = "none";
    }
    _this.$(menus[this.value]).className = openClass;
    _this.$(divs[this.value]).style.display = "block";
    }
    }
    },
    $ : function(oid){
    if(typeof(oid) == "string")
    return document.getElementById(oid);
    return oid;
    }
    }
    window.onload = function(){
    var SDmodel = new scrollDoor();
    SDmodel.sd(["m01","m02","m03","m04","m05"],["c01","c02","c03","c04","c05"],"sd01","sd02");
    SDmodel.sd(["mm01","mm02","mm03","mm04","mm05"],["cc01","cc02","cc03","cc04","cc05"],"sd01","sd02");
    SDmodel.sd(["mmm01","mmm02","mmm03","mmm04","mmm05"],["ccc01","ccc02","ccc03","ccc04","ccc05"],"sd01","sd02");
    }
    </script>
    </head>
    <body>
    <div class="bodyer">
    <div class="preview">
    <div class="scrolldoorFrame">
    <ul class="scrollUl">
    <li class="sd01" id="m01">ASP</li>
    <li class="sd02" id="m02">PHP</li>
    <li class="sd02" id="m03">JSP</li>
    <li class="sd02" id="m04">JAVA</li>
    <li class="sd02" id="m05">AJAX</li>
    </ul>
    <div class="bor03 cont">
    <div id="c01">
    ASP的内容
    </div>
    <div id="c02" class="hidden">
    PHP的内容
    </div>
    <div id="c03" class="hidden">
    JSP的内容
    </div>
    <div id="c04" class="hidden">
    JAVA的内容
    </div>
    <div id="c05" class="hidden">
    AJAX的内容
    </div>
    </div>
    </div>
    </div>
    </div>
    </body>
    </html>
    <br>
    <p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的代码下载网站 - 致力为中国站长提供有质量的代码!</p>
    

    代码来自:http://www.webdm.cn/webcode/f1f29804-b22f-4a57-a8d3-f1dcb68c0361.html

  • 相关阅读:
    零基础学Python-第一章 :Python介绍和安装-02.Python的发展历史与版本
    零基础学Python_汇总贴
    零基础学Python-第一章 :Python介绍和安装-01.Python语言的特点
    Spring cloud微服务安全实战-3-11API安全机制之登录
    iOS play video
    Http Live Streaming 实现iphone在线播放视频[转]
    UIWebView分页显示
    ios7适配--uitableviewcell选中效果
    ios7 设置status bar风格
    ios7适配--隐藏status bar
  • 原文地址:https://www.cnblogs.com/webdm/p/2020471.html
Copyright © 2020-2023  润新知