📄 index.html
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body onLoad="showwindows();windowLoaded(window.event);">
<div id="container"></div>
<script src="controls/button.js" language="javascript">
</script>
<script src="window.js" language="javascript">
</script>
<script language="javascript">
function showwindows() {
var mybutton = new plainbutton();
var mywindow = new XPWindow('mywindow','mywindow',mybutton.html,50,50,100,300,true,'icon.gif');
var mywindow2 = new XPWindow('mywindow2','mywindow2','',100,100,180,350,true,'');
var mywindow3 = new XPWindow('mywindow3','README','WELCOME TO THE JS WINDOW PROJECT<br><br>By viewing this page, you agree to the following terms:<br>1. This page is not to modified in any form without permission from it\'s creator.<br>2. You will not participate in any means "modification" of the source code of this page in any form without permission.<br>3. You will not link or bookmark ANY of the javascript files affiliated with this script.<br>4. You will not "borrow" any source code to this project without permission.',150,150,200,375,true,'');
document.getElementById('container').innerHTML = mywindow.html + mywindow2.html + mywindow3.html;
}
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -