<%
String path = request.getContextPath();
%>
<!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 charset="UTF-8">
<title>无标题页</title>
<style type="text/css">
.scrolldiv{
width:100px;
height:200px;
position:absolute;
top:300px;
left:30px;
background-color:red;
}
</style>
<script type="text/javascript" src="<%=path%>/bbs/js/jquery-1.10.2.js"></script>
</head>
<body style="width:2000px;height:8000px">
<div class="scrolldiv" id="scrolldiv"></div>
</body>
<script type="text/javascript">
var timer;
$(function(){
$(window).scroll(function(){
clearInterval(timer);
var topScroll=getScroll();
var topDiv="1px";
var top=topScroll+parseInt(topDiv);
timer=setInterval(function(){
//$(".test").css("top", top+"px");
$(".scrolldiv").animate({"top":top},500);
},500)
})
})
function getScroll(){
var bodyTop = 0;
if (typeof window.pageYOffset != 'undefined') {
bodyTop = window.pageYOffset;
} else if (typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat') {
bodyTop = document.documentElement.scrollTop;
}
else if (typeof document.body != 'undefined') {
bodyTop = document.body.scrollTop;
}
return bodyTop
}
</script>
</html>
相关文章
- 08-14#高德地图api移动端定位失败解决方案 #H5 原生Geollocation接口Chomre浏览器的坑
- 08-14移动常见问题--H5标签之浏览器兼容性、JS之浏览器兼容性、CSS3之浏览器兼容性、移动端动画
- 08-14c – OpenCV:相对于参考图像(图像注册)移动/对齐面部图像
- 08-14移动端和pc端事件绑定方式以及取消浏览器默认样式和取消冒泡
- 08-14淘宝999买的教程之弹性布局,弹性布局真的很好用,除了一些不支持的浏览器,移动端必备
- 08-14vue 移动端在div上绑定click事件 失效
- 08-14PC和移动端浏览器请求头
- 08-14vue左右移动div
- 08-14div跟随鼠标移动
- 08-14div 跟随鼠标进行移动 兼容