»
Tiếng AnhTiếng PhápTiếng Việt

In - Tạo mới cửa sổ động 2 - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Tạo mới cửa sổ động 2
URL: https://www.javascriptbank.com/animated-window-opener-ii.html

Tạo mới cửa sổ động 2 © JavaScriptBank.comKhi nhấp vào liên kết được chỉ định, hiệu ứng tạo một cửa sổ trình duyệt mới có kích thước tăng dần theo chiều rộng rồi đến chiều dài.

Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Tạo mới cửa sổ động 2
URL: https://www.javascriptbank.com/animated-window-opener-ii.html



JavaScript
<SCRIPT language=JavaScript><!-- Begin// Animated Window- By Rizwan Chand (rizwanchand@hotmail.com)// Modified by DD for NS compatibility// Visit http://www.dynamicdrive.com for this scriptfunction expandingWindow(website) {var windowprops='width=100,height=100,scrollbars=yes,status=yes,resizable=yes'var heightspeed = 2; // vertical scrolling speed (higher = slower)var widthspeed = 7;  // horizontal scrolling speed (higher = slower)var leftdist = 10;    // distance to left edge of windowvar topdist = 10;     // distance to top edge of windowif (window.resizeTo&&navigator.userAgent.indexOf("Opera")==-1) {var winwidth = window.screen.availWidth - leftdist;var winheight = window.screen.availHeight - topdist;var sizer = window.open("","","left=" + leftdist + ",top=" + topdist +","+ windowprops);for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed)sizer.resizeTo("1", sizeheight);for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed)sizer.resizeTo(sizewidth, sizeheight);sizer.location = website;}elsewindow.open(website,'mywindow');}//  End --></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<a href="#" onClick="expandingWindow('popup_content.html');return false">JavaScriptBank.com example popup</a><br><input type="button" value="JavaScriptBank.com example popup" onClick="expandingWindow('popup_content.html')"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->