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

jQuery三級菜單作業(yè)

original 2019-01-08 17:16:37 238
abstrait:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>三級菜單作業(yè)</title> <script type="text/javascript" src="jquery-3.3.1.min.js"&g

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>三級菜單作業(yè)</title>

<script type="text/javascript" src="jquery-3.3.1.min.js"></script>

<style type="text/css">

*{

margin: 0px auto; 

padding: 0px;

}

.menu {

width: 606px;

height: 35px; 

margin: 0px auto; 

background: #cef; 

margin-top: 20px; 

color: #f33; 

border:1px solid #ccc;

border-radius: 7px; 

}

    ul{

    list-style: none;

    border-radius: 15px;

    }

    ul li {

    width: 100px; 

    height: 35px; 

    line-height: 35px; 

    text-align: center; 

    float: left; 

    border-right: 1px dotted #fff; 

    cursor: pointer;

    }

    .twobox li {

    width: 100px; 

    height: 30px; 

    line-height: 30px;

    background: #ffc2b3; 

    color: #096; 

    font-size: 14px; 

    position: relative; 

    border:0px;

    border-radius: 15px;

    }

    .twobox li:hover {

    background: #96f; 

    color: #fff;

    border-radius: 20px;

    }

    .three {

    position: absolute; 

    top: 0px; 

    left: 100px;

    }

    .three li {

    width: 99px; 

    height: 30px; 

    line-height: 30px; 

    border: 0;

    }

</style>

<script type="text/javascript">

$(document).ready(function() {

$('.twobox').hide()

$('.three').hide()


$('.one>li').mouseover(function() {

$(this).find('.twobox').slideDown(500)

})


$('.one>li').mouseleave(function() {

$(this).find('.twobox').slideUp(500)

})


$('.two').mouseover(function() {

$(this).find('.three').slideDown(500)

})


$('.two').mouseleave(function(){

$(this).find('.three').slideUp(500)

})

})

</script>

</head>

<body>

<div class="menu">

<ul class="one">

<li>首頁</li>

<li>

關(guān)于我們

<ul class="twobox">

<li>公司簡介</li>

<li>領(lǐng)導(dǎo)展示</li>

<li class="two">

組織架構(gòu)

<ul class="three">

<li>董事長</li>

<li>總經(jīng)理</li>

<li>副總經(jīng)理</li>

<li>總監(jiān)</li>

</ul>

</li>

<li>公司榮譽</li>

<li>發(fā)展歷程</li>

<li>團(tuán)隊展示</li>

</ul>

</li>

<li>

業(yè)務(wù)體系

<ul class="twobox">

<li>全部項目</li>

<li>城市綜合體</li>

<li>市政環(huán)境養(yǎng)護(hù)</li>

<li>產(chǎn)業(yè)投資與創(chuàng)新</li>

<li class="two">

其它

<ul class="three">

<li>友情鏈接</li>

<li>內(nèi)部辦公</li>

</ul>

</li>

</ul>

</li>

<li>

新聞資訊

<ul class="twobox">

<li>公司新聞</li>

<li>行業(yè)資訊</li>

<li>公司公告</li>

</ul>

</li>

<li>人才招聘</li>

<li>聯(lián)系我們</li>

</ul>

</div>

</body>

</html>


Professeur correcteur:天蓬老師Temps de correction:2019-01-08 17:29:51
Résumé du professeur:top: 0px; 以后, 0 后面不要加單位 啦

Notes de version

Entrées populaires