Начало
Детали страницы
Изменение размера Ссылка
Этот сценарий позволяет просматривать любые веб-страницы при разных разрешениях, просто нажав на ссылку и ввод значения высоты и ширины.
Resize Window
JavaScript Page Details: Изменение размера Ссылка
<!-- ONE STEP TO INSTALL RESIZE LINK: 1. Copy the coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the BODY of your HTML document --> <BODY> <a href="javascript:var intwidth;var intheight;intwidth=prompt('Enter the width for the browser.','');intheight=prompt('Enter the height for the browser.','');intwidth=parseInt(intwidth);intheight=parseInt(intheight);if(intwidth>0&&intheight>0) {window.resizeTo(intwidth,intheight);}else{alert('Please specify a width and height.');}">Resize Window</a> <!-- Script Size: 0.67 KB -->