ブラウザサイズをフルサイズで表示させる方法
ブラウザにタイトルバーとスクロールバーとスタートバー以外を表示しないページを作成したいのですが、
XPはOKで、WIN98でうまくいきませんでした。リンク先をクリックすると別ウィンドウが立ち上がる仕組みです。画面サイズに合わせて変わるようなのですが、WIN98では、スクロールバーが途中で切れてしまい、
一番下まで、綺麗に表示できませんでした。これ以外の方法でもかまいませんので、どなたかご伝授いただければと思います。
function wopen(url){
if(screen.width <= 640){
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=640,height=480,left=0,top=0")
}elseif(screen.width <= 800){
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=800,height=600,left=0,top=0")
}else
if(screen.width <= 1024){
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=1024,height=768,left=0,top=0")
}else
if(screen.width <= 1152){
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=1152,height=864,left=0,top=0")
}else
if(screen.width <= 1280){
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=1280,height=1024,left=0,top=0")
}else{
window.open(url,"_blank","resizable=no,menubar=no,status=yes,location=no,scrollbars=yes,toolbar=no,width=1600,height=1240,left=0,top=0")
}
return;
}
:
<A href="javascript:wopen('/index.html')">
補足
ご指摘ありがとうございます。 以下のソースでモーダル起動すると、スクロールバーが表示され、画面下に不明な空白が出てきます。 改めて回避方法があれば教えてください。 ※ソースは画面解像度1024×768を想定してます。 ※VistaのIEでも発生しました。 ~~呼出HTML(test.html)~~ <html> <head> <script type="text/vbscript"> <!-- sub init() call window.showModalDialog("index.html",,"resizable:no;scrollbars:no;status:no;dialogwidth:500px;dialogheight:1000px;dialogTop:0px;dialogLeft:0px") end sub '--> </script> </head> <body onload="vbscript:call init()"></body> <html> ~~モーダルHTML(index.html)~~ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <HTML lang="ja"> <HEAD> <TITLE>TEST</TITLE> </HEAD> <FRAMESET cols="50%,50%"> <FRAME src="html1.htm"> <FRAME src="html2.htm"> </FRAMESET> </HTML> ~~フレーム内HTML(html1.html、html2.html)~~ <HTML> <HEAD></HEAD> <BODY style="background-color:#ffcccc"></BODY> </HTML>