html 如何用css+JS控制图片随页面滚动向下而自动向下,而且一直处于右侧居中位置
发布网友
发布时间:2022-04-20 19:44
我来回答
共4个回答
热心网友
时间:2022-04-20 21:13
<div id="aaa">111111</div>
<script>
var top1 = 100;/*初始值*/
var elem = document.getElementById('aaa');/* 浮动元素的 ID */
elem.style.position = 'absolute';
elem.style.top = top1+"px";
window.onscroll = function(){
elem.style.top = top1 + parseInt(document.documentElement.scrollTop)+parseInt(document.body.scrollTop) + "px";
}
</script>
不用JS使用css的position:fixed就可以实现,
但是 position : fixed 不支持IE6,
热心网友
时间:2022-04-20 22:31
最简单的方法就是用position:fixed
具体可以看下http://www.w3school.com.cn/css/css_positioning.asp
热心网友
时间:2022-04-21 00:06
这个不需要用js的,只要用position:fixed就可以了
热心网友
时间:2022-04-21 01:57
加position再写fixed