淘宝宝贝详情栏固定位置的效果实现

太叔鹏云
2023-12-01

实现过程:

1得到menu的容器div距离顶部的尺寸

2在滚动条滚动的过程中,计算滚动条的距离顶部的位置,当滚动条距离顶部的位置大于这个menu容器div(menu_wrap)距离顶部的高度时,menu添加position为fixed的class


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>div </title>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
<script>
$(window).scroll(function () {
			var menu_top = $('#menu_wrap').offset().top;
			if($(window).scrollTop() >= menu_top)
			{
				$('.menu').addClass('menuFixed')
			}
			else
			{
				$('.menu').removeClass('menuFixed')
			}         
        });
</script>
<style>
*
{
	padding:0;
	margin:0;
}
.wrap
{
	height:1600px;
	width:96%;
	background:#A9F5AC;
}
.con
{
	height:300px;
	width:96%;
	border:1px solid #fff
}
.menu
{
	height:50px;
	width:600px;
	background:#999
}
.menuFixed
{
	position:fixed;
	top:0;
}
#menu_wrap
{
	height:300px;
	width:100%;
	background:#333
}
</style>
</head>
<body>
<div class='wrap'>
	<div class='con'>
		
	</div>
	<div id='menu_wrap'>
		<div class='menu'>
			评价    详情
		</div>
	</div>
</div>
</div>
</body>
</html>


 类似资料: