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

下劃線(xiàn)跟隨導(dǎo)航

原創(chuàng) 2019-03-18 11:15:29 313
摘要:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">&

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>jQuery實(shí)例-三級(jí)菜單</title>

<script src="jquery-3.3.1.js"></script>

<style>

* {

margin: 0px;

padding: 0px;

}

.menu {

width: 800px;

height: 32px;

margin: 20px auto;

background: lightcyan;

margin-top: 20px;

color: #7f69d1;

border: 1px solid #ccc;

border-radius: 5px;

position: relative;


}

ul {

list-style: none;

z-index: 20;

position: relative;

font-size: 15px;

}

li {

width: 100px;

height: 30px;

line-height: 30px;

text-align: center;

float: left;

color: lightblue;

cursor: pointer;

}


</style>


<script>

$(function(){

//導(dǎo)航鼠標(biāo)跟隨效果

$('li').hover(

function(){

$x=parseInt($(this).attr('name'))*100;

$('.block').stop().animate({left:$x+'px'},500);

},

function(){

$('.block').stop().animate({left:'0px'},500);

}


)



})

</script>

</head>

<body>

<div class="menu">

<ul>

<li name="0">首頁(yè)</li>

<li name="1">產(chǎn)品示例</li>

<li name="2">公司新聞</li>

<li name="3">服務(wù)支持</li>

<li name="4">聯(lián)系我們</li>

</ul>

<div class="block" style="z-index:10; width:100px; height:2px; background:rgb(118, 7, 223); position:absolute; top:30px;"></div>

</div>

</body>

</html>



批改老師:滅絕師太批改時(shí)間:2019-03-18 16:53:04
老師總結(jié):練習(xí)的比較快,是想快速到后期內(nèi)容吧,還是要穩(wěn)穩(wěn)的來(lái)哦!

發(fā)佈手記

熱門(mén)詞條