在 head 加上
<script type="text/javascript" src="pst.js" ></script>
在 pst.js(或是直接寫在 head 也是可以啦 ^^" )
function window.onload() {
reSize(1024, 600);
}
function reSize(x, y) {
if (x > screen.availWidth) x = screen.availWidth
if (y > screen.availHeight) y = screen.availHeight
self.moveTo((screen.availWidth - x) / 2, (screen.availHeight - y) / 2);
self.resizeTo(x, y);
}
沒有留言:
張貼留言