求一段右侧随滚动条上下浮动的广告的js 拿来就能用的 急急!!!_百度知...
发布网友
发布时间:2022-05-10 04:35
我来回答
共1个回答
热心网友
时间:2022-04-23 21:19
<script type="text/javascript" >
var Marginleft = 0; //浮动层离浏览器右侧的距离
var MarginTop = 100; //浮动层离浏览器顶部的距离
var Width = 180; //浮动层宽度
var Heigth= 400; //浮动层高度
//设置浮动层宽、高
function Set()
{
document.getElementById("FloatDIV").style.width = Width + 'px';
document.getElementById("FloatDIV").style.height = Heigth + 'px';
}
//实时设置浮动层的位置
function Move()
{
var b_top = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
var b_width= document.body.clientWidth;
document.getElementById("FloatDIV").style.top = b_top + MarginTop + 'px';
document.getElementById("FloatDIV").style.left= b_width - Width - Marginleft + 'px';
setTimeout("Move();",100);
}
Set();
Move();
</script>追问广告我加了个div 运行没效果呀
追答层的位置属性设为position: absolute