发布网友 发布时间: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文件追问加上了不起作用额,您有完整的例子么?