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

三級下拉菜單隱藏顯示動(dòng)畫效果

オリジナル 2018-11-22 14:15:28 228
サマリー:<!DOCTYPE html> <html> <head>     <meta charset="UTF-8">     <title>三級下拉菜單</title>    &nb
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>三級下拉菜單</title>
    <script type="text/javascript" src="jquery-3.3.1.min.js"></script>
    <style type="text/css">
        *{margin:0px;padding: 0px;}
        .menu{width: 800px;height: 38px;margin: 0px auto;background: pink;margin-top: 20px;color: #666;border:1px solid #ccc;border-radius: 5px;}
        ul{list-style: none}
        ul li{width:100px;height: 36px;line-height: 36px;text-align: center;float: left;border-right: 1px solid #ccc;cursor: pointer;}
        .twobox li {width: 100px;height: 30px;line-height: 30px;background: pink;color: #666;font-size: 14px;position: relative;border:0px;}
        .twobox li:hover{background: #000;color: #fff;}
        .three{position: absolute;top: 0px;left: 100px;}
        .three li{width: 99px;height: 30px;line-height: 30px;border:0px;}
    </style>
    <script >
        //     //隱藏二級與三級下拉菜單
        //     //鼠標(biāo)移動(dòng)到包含二級菜單的一級菜單時(shí)顯示當(dāng)前二級菜單
        //     //鼠標(biāo)移出包含二級菜單的一級菜單時(shí)隱藏當(dāng)前二級菜單
        //     //鼠標(biāo)移動(dòng)到包含三級菜單的二級菜單時(shí)顯示當(dāng)前三級菜單
        //     //鼠標(biāo)移出包含三級菜單的二級菜單時(shí)隱藏當(dāng)前三級菜單
        
        $(document).ready(function () {
            $('.twobox').hide()
            $('.three').hide()
            $('.one>li').mouseover(function(){
                $(this).find('.twobox').slideDown(500)
            })
            $('.one>li').mouseleave(function(){
                $(this).find('.twobox').slideUp(200)
            })
            $('.twobox>li').mouseover(function(){
                $(this).find('.three').slideDown(500)
            })
            $('.twobox>li').mouseleave(function(){
                $(this).find('.three').slideUp(200)
            })
        })
    </script>
</head>
<body>
    <div>
        <ul>
            <li>首頁</li>
            <li>產(chǎn)品
                <ul>
                    <li>產(chǎn)品1</li>
                    <li>產(chǎn)品2
                        <ul>
                            <li>產(chǎn)品2.1</li>
                            <li>產(chǎn)品2.2</li>
                            <li>產(chǎn)品2.3</li>
                            <li>產(chǎn)品2.4</li>
                        </ul>
                    </li>
                    <li>產(chǎn)品3</li>
                    <li>產(chǎn)品4
                        <ul>
                            <li>產(chǎn)品4.1</li>
                            <li>產(chǎn)品4.2</li>
                            <li>產(chǎn)品4.3</li>
                            <li>產(chǎn)品4.4</li>
                        </ul>
                    </li>
                </ul>
            </li>
            <li>新聞</li>
            <li>案例
                <ul>
                    <li>案例1</li>
                    <li>案例2
                        <ul>
                            <li>案例2.1</li>
                            <li>案例2.2</li>
                            <li>案例2.3</li>
                            <li>案例2.4</li>
                        </ul>
                    </li>
                    <li>案例3</li>
                </ul>
            </li>
            <li>聯(lián)系我們</li>
        </ul>
    </div>
</body>
</html>

三級下拉菜單,帶了動(dòng)畫效果,界面看起來友好多了

添削の先生:滅絕師太添削時(shí)間:2018-11-22 17:09:11
先生のまとめ:布局看著也很好,條理很清楚,繼續(xù)保持,好的布局再寫js的時(shí)候也會(huì)輕松哦!

手記を発表する

人気のある見出し語