文章出處

實現效果:1.點擊左側菜單相應文字,主頁面跳轉到對應位置;

              2.菜單欄在鼠標滑動一定距離后才出現;

              3.滑動到文字所涵蓋的區域,文字背景會變色;

 

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="js/jquery-3.1.1.min.js"></script>
<style>
*{
margin: 0;
padding: 0;
text-decoration: none;
color: black;
}
.left_nav {
border: 1px solid lightpink;
background: pink;
position:fixed;
left: 5px;
top:150px;
width: 70px;
height: 100px;
z-index: 5;
display:none;
}
.left_nav p {
border-bottom: 1px solid lightpink;
text-align: center;
line-height: 30px;

}
.left_nav p:first-of-type {
margin-top: 15px;
}
.left_nav p a:hover {
color: pink;
}
.addcolor {
background: orchid;

}
#first {
height: 300px;
background: paleturquoise;
}
#woman {
height:1000px ;
background: cornflowerblue;
}
#man {
height:1000px ;
background: cadetblue;
}
</style>
</head>
<body>
<div id="first"></div>
<div id="woman"></div>
<div id="man"></div>

<div class="left_nav">
<p><a href="#woman">女裝</a> </p>
<p><a href="#man">男裝</a> </p>
</div>

<script>
$(document).scroll(function() {
var top=$(this).scrollTop();
console.log(top);
if(top<300){
$(".left_nav").fadeOut(600);
}
if(top>=300) {
$(".left_nav").fadeIn(600);
}//菜單先隱藏,鼠標往下滑的距離大于等于300菜單出現

if(top>=300&&top<1300){
$(".left_nav p").eq(0).addClass("addcolor").siblings().removeClass() ;
}
if(top>1300){
$(".left_nav p").eq(1).addClass("addcolor").siblings().removeClass() ;
}//鼠標往下滑到相應范圍相應菜單欄變色
})
</script>
</body>
</html>

文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()