スプラッシュ画面を開く基本サンプル

枠のまったくないウィンドウをスクリーン中央に開くベースサンプル


●開いたウィンドウに表示するHTMLファイル(splash01.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>
<style type=text/css>
</style>
</head>
<body style="background-color:red;color:white;overflow:hidden;">
<table width="100%" height="100%">
<tr>
<td align="center">
<span style="font-size:20pt;font-family:Arial;font-weight:900">MAKOTO3.NET</span><br>
<button onclick="window.close()">close</button>
</td>
</tr>
</table>
</body>
</html>