-----036-Window-Resize.html-----
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <title>标题</title> 6 </head> 7 <body> 8 <h1>Resize</h1> 9 <button onclick="resizeBy(20, 20)">放大</button><br/> 10 <button onclick="resizeBy(-20, -20)">缩小</button><br/> 11 <button onclick="resizeTo(300, 300)">300X300</button> 12 </body> 13 </html>