jq实现吸附效果

Posted 松前月下

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq实现吸附效果相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.top{
width: 100%;
height: 300px;
background: red;
}
.middle{
width: 100%;
height: 30px;
background: green;
}
.middle_active{
position: fixed;
width: 100%;
height: 30px;
top: 0;
z-index: 99;
}
.bottom{
width: 100%;
height: 1500px;
background: blue;
}
</style>
<script type="text/javascript" src="js/jquery-2.1.0.js" ></script>
</head>
<body>
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</body>
<script>
$(window).scroll(function(){
var juli=$(document).scrollTop();
if(juli>300){
$(‘.middle‘).addClass(‘middle_active‘);
}else{
$(‘.middle‘).removeClass(‘middle_active‘);
}
})
</script>
</html>

以上是关于jq实现吸附效果的主要内容,如果未能解决你的问题,请参考以下文章

Android 滑动定位+吸附悬停效果实现

Android 滑动定位+吸附悬停效果实现

小程序实现滑动吸附效果

小程序实现滑动吸附效果

使用uicollectionview 实现单元格滑动吸附效果

在unity中实现分页滚动的效果和吸附功能(UGUI)