你的位置:
主页
>>
窗口特效
点击后窗口缩小居中
1.加入如下代码到head区域
<script> function this_win(w,h){ var ww=window.screen.width*w/100; var hh=window.screen.height*h/100; window.resizeTo(ww,hh); window.moveTo(Math.ceil((window.screen.width-ww)/2),Math.ceil((window.screen.height-hh)/2)); } </script>
2.这段代码放在body区域中
<a href="#" onclick="this_win(50,50)">点击后窗口缩小居中</a>