• 来自阿里巴巴网的滑动TAB导航特效


    代码简介:来自阿里巴巴网的滑动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>
    <title>来自阿里巴巴网的滑动TAB导航特效_网页代码站(www.webdm.cn)</title>
    <style type="text/css"> 
    /*这里定义样式,由于左右滑动区宽度不同,所以代码略多*/ 
    body {margin:0px;border:0px;font-size:12px;background-color:#fff;} 
    a:link{color: #003278;text-decoration: none;} 
    a:visited{color: #003278;text-decoration: none;} 
    a:hover{color: #FF6600;text-decoration: underline;} 
    #slideBox{background:url(http://www.webdm.cn/images/20100914/slideBox_bg.gif);height:168px;178px;padding-left:5px;padding-right:5px;} 
    #slide{padding-top:5px} 
    #slide li img{margin-right:3px} 
    #slideBox ul{padding:0;margin:0;clear:both;list-style:none;overflow:hidden} 
    #slideBox li{float:left;font-weight:bold;height:37px !important;height:27px;} 
    #slideBox li a:link,#slideBox li a:visited{color:#000;} 
    #slideBox li a:hover{color:#ff7300;text-decoration: none} 
    #slideBox .l{background:url(http://www.webdm.cn/images/20100914/slideBox_tableft.gif);80px;} 
    #slideBox .r{background:url(http://www.webdm.cn/images/20100914/slideBox_tabright.gif);94px;float:right} 
    #slideBox .l_h{background:url(http://www.webdm.cn/images/20100914/slideBox_tableft_h.gif);80px;} 
    #slideBox .r_h{background:url(http://www.webdm.cn/images/20100914/slideBox_tabright_h.gif);94px;float:right;} 
    #slideBox .hide{display:none} 
    #slideBox .l a{52px;} 
    #slideBox .r a{68px;} 
    .arrow{padding-left:8px;background:url(http://www.webdm.cn/images/20100914/icon_arrow03_right_08x.gif) no-repeat;} 
    #slideBox .l a,#slideBox .r a,#slideBox .l_h a,#slideBox .r_h a{padding-left:24px;display:block;height:100%;padding-top:10px;} 
    .btn_zchy{background:url(http://www.webdm.cn/images/20100914/icon_zchy01_12x.gif) 5px 10px no-repeat;} 
    .btn_cxt{background:url(http://www.webdm.cn/images/20100914/icon_cxt01_12x.gif) 5px 10px no-repeat;} 
    .btn_tggs{background:url(http://www.webdm.cn/images/20100914/icon_tggs01_12x.gif) 5px 10px no-repeat;} 
    .btn_fbxx{background:url(http://www.webdm.cn/images/20100914/icon_fbxx01_12x.gif) 5px 10px no-repeat;} 
    .btn_xzmj{background:url(http://www.webdm.cn/images/20100914/icon_xzmj01_12x.gif) 5px 10px no-repeat;} 
    .btn_alisoft{background:url(http://www.webdm.cn/images/20100914/icon_alisoft01_12x.gif) 5px 10px no-repeat;} 
    /*cont*/ 
    #slideBox .cont_l{float:left;background:url(http://www.webdm.cn/images/20100914/slideBox_conleft.gif);157px;height:31px;padding:9px 7px 7px 14px;margin-bottom:4px;overflow:hidden} 
    #slideBox .cont_r{float:left;background:url(http://www.webdm.cn/images/20100914/slideBox_conright.gif);157px;height:31px;padding:9px 7px 7px 14px;margin-bottom:4px;overflow:hidden} 
    #slideBox .oneline{line-height:33px;} 
    </style>
    </head>
    
    <body style="text-align:center"><br /><br />
    <!--slidebox start-->
    <div id="slideBox">
    <div id="slide">
      <ul>
      <li class="l_h"><a href="http://www.webdm.cn/" class="btn_zchy">注册会员</a></li>
      <li class="r"><a href="http://www.webdm.cn/" class="btn_cxt">加入诚信通</a></li>
      </ul>
      <div class="cont_l" id="sc_1">
    内容一
      </div>
      <div class="hide" id="sc_2">
    内容二
      </div>
       <ul>
      <li class="l"><a href="http://www.webdm.cn/" class="btn_tggs">推广公司</a></li>
      <li class="r"><a href="http://www.webdm.cn/" class="btn_fbxx">发布信息</a></li>
      </ul>
       <div class="hide" id="sc_3">
    内容三
      </div>
      <div class="hide" id="sc_4">
       内容四
    </div>
      <ul>
      <li class="l"><a href="http://www.webdm.cn/" class="btn_xzmj">寻找买家</a></li>
      <li class="r"><a href="http://www.webdm.cn/" class="btn_alisoft">阿里软件</a></li>
      </ul>
      <div class="hide" id="sc_5">
       内容五
      </div>
      <div class="hide" id="sc_6">
       内容六
      </div>
    </div>    
    </div>
    <!--slidebox end-->
    <script type="text/javascript">
    /*alitab 
    author:alicn-wd-ym 
    这里是所有js实现,代码比较少,主要还是取巧,利用了classname的关系 
    */ 
    var slideTabIndex=1; 
    var sTabList = document.getElementById("slideBox").getElementsByTagName("li"); 
    for(var i=0;i<sTabList.length;i++){ 
    var obj = sTabList[i].getElementsByTagName("a")[0]; 
    sTabList[i].getElementsByTagName("a")[0].id="slideBtn_"+(i+1); 
    if (obj.addEventListener) { 
    obj.addEventListener( "mouseover", overSlide, false ); 
    } 
    else if (obj.attachEvent) { 
    obj.attachEvent( "onmouseover", overSlide ); 
    } 
    } 
    function overSlide(e){ 
    e = window.event || e; 
    var srcElement = e.srcElement || e.target; 
    var newTabIndex=srcElement.id.replace("slideBtn_",""); 
    var pos = srcElement.parentNode.className; 
    if(newTabIndex==""||pos.indexOf("_h")!=-1)return; 
    document.getElementById("slideBtn_"+slideTabIndex).parentNode.className=document.getElementById("slideBtn_"+slideTabIndex).parentNode.className.replace("_h",""); 
    document.getElementById("sc_"+slideTabIndex).className="hide"; 
    document.getElementById("sc_"+newTabIndex).className="cont_"+pos; 
    srcElement.parentNode.className = pos+"_h"; 
    slideTabIndex=newTabIndex; 
    } 
      
    <!--slidebox end-->
    </script>
    </body>
    </html>
    <br>
    <p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的代码下载网站 - 致力为中国站长提供有质量的代码!</p>
    

    代码来自:http://www.webdm.cn/webcode/42a530a4-a5c5-4864-9a21-3e4b5d9bda8d.html

  • 相关阅读:
    Neo4j电影关系图Cypher
    Neo4j电影关系图
    Neo4j配置文件neo4j.conf
    SpringBoot实现多数据源(实战源码)
    Maven添加Oracle驱动及依赖
    HttpClient发送Json数据到指定接口
    java手动分页处理
    设计模式之模板方法模式
    JDBC插入性能优化对比
    Oracle数据库常用监控语句
  • 原文地址:https://www.cnblogs.com/webdm/p/2079574.html
Copyright © 2020-2023  润新知