首页 > 代码库 > 绝对定位-随滚动条 固定于某处
绝对定位-随滚动条 固定于某处
css:
#anchor{
position:absolute;
top:40%;
left:40%;
width:100px;
height:100px;
background-color:red;
}
js:
$(function(){
var anchorTop = $("#anchor").css("top");
anchorTop = Number(anchorTop.substring(0, anchorTop.indexOf("p"))); //首先在监听器外部记录某id=anchor的标签的初始位置
window.onscroll = function () {
var top = document.documentElement.scrollTop || document.body.scrollTop;
$("#anchor").css({
transition:"top 1s",
webkitTransition:"top 1s",
oTransition:"top 1s",
msTtransition:"top 1s",
mozTransition:"top 1s",
top: anchorTop + top + "px"
});
};
});
绝对定位-随滚动条 固定于某处
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。