亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

仿中文網(wǎng)的簡單導(dǎo)航

Original 2019-05-27 17:57:04 180
abstrakt:<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>三級下拉菜單</title>    <script type="

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>三級下拉菜單</title>
   <script type="text/javascript" src="../jquery-3.4.1.min.js"></script>
   <style>
*{margin: 0px;padding: 0px}
       .menu{width: 830px;height: 35px;margin: 0px auto;background: #000;margin-top: 20px;
color: #fff;border: 1px solid #cccccc;border-radius: 5px}
ul{list-style-type: none}
ul li {width: 100px;height: 30px;line-height: 35px;text-align: center;float: left;border-right: 1px solid #cccccc;cursor: pointer}
       .twobox li{width: 100px;height: 35px;line-height: 35px;background: #2D2D2D;color: #A9A9A9;font-size: 14px;position: relative;border: 0px}
       .twobox li :hover{background: orangered;color: green}
       .three{position: absolute;top: 0px;left: 100px}
       .three li{width: 99px;height: 30px;line-height: 30px;border: 0}
       .one li :hover{background: orangered;color: green;border-bottom: 2px solid white}

</style>
   <script type="text/javascript">
$(document).ready(function () {
$('.twobox').hide();
$('.three').hide();

$('.one>li').mouseover(function () {
$(this).find('.twobox').slideDown(600)
           });

$('.one>li').mouseleave(function () {
$(this).find('.twobox').slideUp(600)
           });

$('.two').mouseover(function () {
$(this).find('.three').slideDown(600)
           });
$('.two').mouseleave(function () {
$(this).find('.three').slideUp(600)
           });
       })
</script>
</head>
<body>
   <div class="menu">
       <ul class="one">
           <li>首頁</li>
           <li>視頻教程
<ul class="twobox">
                  <li class="two">PHP
                       <ul class="three">
                           <li>PeterZhu教程</li>
                           <li>獨孤教程</li>
                       </ul>
                  </li>
                  <li>JS
                      <ul class="three">
                            <li>滅絕教程</li>
                            <li>東方不敗教程</li>
                      </ul>
                  </li>
                  <li>JQ</li>
                  <li>MYSQL</li>
              </ul>
           </li>
           <li>社區(qū)問答</li>
           <li>特色課程</li>
           <li>技術(shù)文章</li>
           <li>編程詞典</li>
           <li>資源下載
<ul class="twobox">
                    <li>手冊下載</li>
                    <li>工具下載
<ul class="three">
                            <li>PHP工具箱</li>
                            <li>PHPStorm</li>
                            <li>subtext</li>
                        </ul>
                    </li>
                    <li>類庫下載</li>
                </ul>
           </li>
           <li>菜鳥學(xué)堂</li>
       </ul>
   </div>
</body>
</html>

Korrigierender Lehrer:天蓬老師Korrekturzeit:2019-05-28 16:02:50
Zusammenfassung des Lehrers:仿咱們自己的網(wǎng)站的, 應(yīng)該不錯, 就是沒有看到截圖, 有點遺憾

Versionshinweise

Beliebte Eintr?ge