浮动条 百度百科js

发布网友 发布时间:2022-04-22 11:23

我来回答

2个回答

热心网友 时间:2022-04-24 07:18

/浮动框兼容主流浏览器
//必须符合W3C标准
document.writeln("<div id=\"msn\" style=\"width:300px;height:50px;z-indent:99999;position:absolute;top:0px;left:0px;background:black;filter:alpha(opacity=20);opacity:0.4;color:red;\">");
document.write('欢迎光临');
document.write("</div>");
//alert(document.documentElement.clientHeight);
msn.style.top=(document.documentElement.clientHeight-50)+'px';
msn.style.left=0+'px';
moveR();
function moveR() {
msn.style.top=(document.documentElement.scrollTop+document.body.scrollTop+document.documentElement.clientHeight-50)+'px';
msn.style.left=document.documentElement.scrollLeft+document.body.scrollLeft+'px';
setTimeout("moveR();",1);
}

放在js文件中 在HTML页面引入js文件

热心网友 时间:2022-04-24 08:36

/浮动框兼容主流浏览器
//必须符合W3C标准
document.writeln("<div id=\"msn\" style=\"width:300px;height:50px;z-indent:99999;position:absolute;top:0px;left:0px;background:black;filter:alpha(opacity=20);opacity:0.4;color:red;\">");
document.write('欢迎光临');
document.write("</div>");
//alert(document.documentElement.clientHeight);
msn.style.top=(document.documentElement.clientHeight-50)+'px';
msn.style.left=0+'px';
moveR();
function moveR() {
msn.style.top=(document.documentElement.scrollTop+document.body.scrollTop+document.documentElement.clientHeight-50)+'px';
msn.style.left=document.documentElement.scrollLeft+document.body.scrollLeft+'px';
setTimeout("moveR();",1);
}

放在js文件中 在HTML页面引入js文件追问加上了不起作用额,您有完整的例子么?

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com