スプラッシュ画面を開く(フレームページでの実験)
枠のまったくないウィンドウをスクリーン中央に開くベースサンプルである
http://www.makoto3.net/DHTML_IE_NEO3/neo3-0059.htmlを
フレームのあるページに使ってみた例。できますね。
【ボタンのクリックで開くHTMLファイル】
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
<script language="javascript">
</script>
</head>
<frameset cols="100,*">
<frame src="splash05.html" name="left">
<frame src="http://www.makoto3.net/" name="right">
</FRAMESET>
</html>
【左フレームに表示するHTMLファイル:splash05.html】
<html>
<head>
</head>
<body bgcolor="blue" text="white">
HELLO
<form>
<input type="button" value="閉じる" onclick="top.close()">
</form>
</body>
</html>
【右フレームに表示するページ】
http://www.makoto3.net/