html强制自动全屏代码

发布于2022-01-13 12:42:01
2个回答
admin
网友回答2022-01-13
Js代码
html
script language=JavaScript
top.window.moveTo(0,0);
//判断是否为IE浏览器
if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
//判断是否为Netscape浏览器(document.layers是Netscape 4.x专有的属性,由于
//document.layers在Netscape6.0以后已经取消,此方法只适用于6.0之前的浏览器)

else if (document.layers||document.getElementById)
{
if(top.window.outerHeightscreen.availHeight||
top.window.outerWidthscreen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
/script
head
/head
body
/body
/html
admin
网友回答2022-01-13
div class=kuan
内容
/div

style
.kuan{
position:absolution;
top:0;
bottom:0;
left:0;
right:0;
}
/style
如果kuan这个div就是你的最外层div的话,你可以这样使用

回到
顶部