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

In - Popup 'bẩn' - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Vui nhộn » Popup 'bẩn'
URL: https://www.javascriptbank.com/dirty-popup.html

Popup 'bẩn' © JavaScriptBank.comHiệu ứng sẽ tạo một cửa sổ popup khi người dùng vừa vào trang web chứa đoạn mã JavaScript này, sau đó khi người dùng tắt trang web này, hiệu ứng cũng sẽ tạo thêm hai cái popup nữa.

Phiên bản đầy đủ: jsB@nk » Vui nhộn » Popup 'bẩn'
URL: https://www.javascriptbank.com/dirty-popup.html



JavaScript
<SCRIPT>// Dirty Popup// Author: Peter Gehrig // Web Site: http://www.24fun.com //////////////////////////////////////////////////////////////////// CONFIGURATION STARTS HERE//////////////////////////////////////////////////////////////////// the URL of the webpage that will be displayed in the popupwindowvar popupurl="../browser/popup_content.html"// the width of the popup-window (pixels)var popupwidth=180// the height of the popup-window (pixels)var popupheight=120// Configure here how many popups shall appear before the script stops// creating new ones// ATTENTION: a high number might crash the PC of your visitorsvar maximumpopups=8//////////////////////////////////////////////////////////////////// CONFIGURATION ENDS HERE//////////////////////////////////////////////////////////////////// do not edit the code below this linevar countpopups=0var ns6=document.getElementById&&!document.all?1:0 var ie=document.all?1:0function startpopup() {    if (ns6 || ie) {        countpopups=0        var popuptop=Math.floor(400*Math.random())          var popupleft=Math.floor(600*Math.random())        window.open(popupurl, "", "toolbar=no,width="+popupwidth+",height="+popupheight+",top="+popuptop+",left="+popupleft+"");    }}function openpopup() {    if (countpopups<maximumpopups && (ns6 || ie)) {        for (i=0;i<=1;i++) {            var popuptop=Math.floor(400*Math.random())            var popupleft=Math.floor(600*Math.random())        window.open(popupurl, "", "toolbar=no,width="+popupwidth+",height="+popupheight+",top="+popuptop+",left="+popupleft+"");            countpopups++        }    }}window.onload=startpopup</SCRIPT>


HTML
<BODY onUnload="openpopup()"></BODY>