元素随着滚动条滚动而滚动,但是到浏览器窗口顶部的距离是固定的功能代码

Posted 小白辕客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了元素随着滚动条滚动而滚动,但是到浏览器窗口顶部的距离是固定的功能代码相关的知识,希望对你有一定的参考价值。

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jquery浮动层</title>
<script src="jquery-1.8.3.js"></script><!-- 注意修改引用路径 -->
<style type="text/css">
#Float {height: 200px;width: 100px;position: absolute;top: 80px;right: 20px;}
</style>
</head>
<script language="javascript">
  $(document).ready(function(){
   $(window).scroll(function (){
// 让浮动层距离窗口顶部,始终保持80px
   var offsetTop = $(window).scrollTop() + 80 +"px";
   $("#Float").animate({top : offsetTop },{ duration:500 , queue:false });
   });
  });
</script>
<body>
<div style="height:2000px;"></div>
<div id="Float"></div>
</body>
</html>

以上是关于元素随着滚动条滚动而滚动,但是到浏览器窗口顶部的距离是固定的功能代码的主要内容,如果未能解决你的问题,请参考以下文章

jQuery滚动到元素的底部而不是顶部

网页设计如何设置网页部分内容不随着滚动条而移动移动?

jQuery - 使用锚链接将元素滚动到屏幕中间而不是顶部

jq滚动到一定位置的出现动画效果

jQuery当滚动条滚动时 一个元素到浏览器顶部的距离 随滚动条滚动时,到顶部的距离为本身的top+滚动条滚动

元素跟随着滚动条运动