[查看演示] 源码如下 ---------------------------------------------------------- <html>
<script language="JavaScript">
var x=640;
var y=480;
var xx=(window.screen.width-x)/2;
var yy=(window.screen.height-y)/2;
function winsize(){
window.resizeTo(x,y);
window.moveTo(xx,yy);
setTimeout("winsize()",50)}</script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>能不能移动我?-www.51windows.Net</title>
<style>
<!--
body, table, p, td, div { font-family: Verdana; font-size: 10pt; color: #000000 }
select{ font-family: Verdana; font-size: 9pt; color: red }
-->
</style>
</head>
<body onload=winsize(); onresize=winsize()>
请点左边标题前的图标在新窗口打开<br>
改变大小,或拖动试试!
</body>
</html>
<div style="position: absolute; top: 10; right: 10; width: 148; height: 18;cursor:hand">
<input type="button" name="Button" value="查看源代码" onClick= 'window.location = "view-source:" + window.location.href'></div> |