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

下劃線跟蹤導(dǎo)航

original 2019-04-13 12:06:21 224
abstrait:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script src="https://code.jquery.com/jquery-3.1.1.min.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<style>
*{margin:0;padding: 0;}
ul{list-style: none;z-index: 20;position: relative;font-size: 15px;}
li{float: left;cursor: pointer;width: 100px;height: 30px;text-align:center;line-height: 30px;color: #fff;font-weight: bold;}
.menu{width: 500px;position: relative;margin:20px auto;box-shadow: 0 2px 20px #000;background-color: lightblue;border-radius: 3px;height: 32px;}
</style>
<script>
$(function () {
$('li').hover(
function(){
$x=parseInt($(this).attr('name'))*100
$('.block').stop().animate({left:$x+'px'},200)
}
,
function(){
$x=parseInt($(this).attr('name'))*100
$('.block').stop().animate({left:'0px'},200)
}
)
})
</script>

</head>
<body> 
<div>

<ul>
<li name="0">首頁(yè)</li>
<li name="1">產(chǎn)品</li>
<li name="2">聯(lián)系</li>
<li name="3">招聘</li>
<li name="4">企業(yè)文化</li>
</ul>
<div style="z-index: 10;width: 100px;height: 2px;background: #fff;position: absolute;top:30px;"></div>
</div>
</body>
</html>


Professeur correcteur:天蓬老師Temps de correction:2019-04-13 16:25:40
Résumé du professeur:<div style="z-index: 10;width: 100px;height: 2px;background: #fff;position: absolute;top:30px;"></div> </div>你這個(gè)div的內(nèi)聯(lián)為什么不寫(xiě)到上面style中呢?一個(gè)頁(yè)面不要出現(xiàn)太多其它方式的樣式規(guī)則

Notes de version

Entrées populaires