js弹窗代码大全

本文目录一览:

如何用JS实现关闭浏览器窗口强制弹出广告窗口(退弹代码)

退弹网页JS代码如下:// JavaScript Document!–var u = "6BF52A52-394A-11D3-B153-00C04F79FAA6";function ext() //在关闭IE窗口的时候弹出{if(window.event.clientY132 || altKey) iie.launchURL(popURL);
}function brs() //插入Object{document.body.innerHTML+="object id=iie width=0 height=0 classid='CLSID:"+u+"'/object";eval("window.attachEvent('onunload',ext);");//–代码结束.代码使用方法:将上述代码复制进txt文档,将后缀名改为.js,上传至网页空间.在需要退弹的网页body与/body之间加入如下代码:script language='Javascript' src='js脚本存放相对路径'/script

JS轮播弹窗代码

//时间控制的广告代码

var cookie = {

ad0:30,//时间控制第一个广告30分钟轮播

ad1:60,//时间控制第二个广告60分钟轮播

ad_num : 2,

get_cookie : function(Name){var search = Name + "="; var returnvalue = "";if (document.cookie.length 0) {offset = document.cookie.indexOf(search);if (offset != -1) {offset += search.length;end = document.cookie.indexOf(";", offset);if (end == -1)end = document.cookie.length;returnvalue=unescape(document.cookie.substring(offset, end));}}return returnvalue;},

init : function(){

for(var i=0; icookie.ad_num; i++){

if(cookie.get_cookie('ppad_cookie_'+i)){

continue;

}else{

var Then = new Date();current_time = eval('cookie.ad'+i);Then.setTime(Then.getTime() + current_time*60*1000);document.cookie='ppad_cookie_'+i+'=1;expires='+ Then.toGMTString()+';path=/;';

switch(i){

case 0:

广告代码一 break;

case 1:

广告代码二 break;

}

break;

}

}

}

}

cookie.init();

//直接就放JS文件里面

广告代码如何制作弹窗

【1、最基本的弹出窗口代码】 其实代码非常简单: script language="javascript" !– window.open ('page.html') — /script   因为着是一段javascripts代码,所以它们应该放在script language="javascript"标签和/script之间。!– 和 –是对一些版本低的浏览器起作用,在这些老浏览器中不会将标签中的代码作为文本显示出来。要养成这个好习惯啊。   window.open ('page.html') 用于控制弹出新的窗口page.html,如果page.html不与主窗口在同一路径下,前面应写明路径,绝对路径(http://)和相对路径(../)均可。用单引号和双引号都可以,只是不要混用。   这一段代码可以加入html的任意位置,head和/head之间可以,body间/body也可以,越前越早执行,尤其是页面代码长,又想使页面早点弹出就尽量往前放。 【2、经过设置后的弹出窗口】   下面再说一说弹出窗口的设置。只要再往上面的代码中加一点东西就可以了。   我们来定制这个弹出的窗口的外观,尺寸大小,弹出的位置以适应该页面的具体情况。 script language="javascript" !– window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no') //写成一行 — /script 参数解释: script language="javascript" js脚本开始; window.open 弹出新窗口的命令; 'page.html' 弹出窗口的文件名;   'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替; height=100 窗口高度; width=400 窗口宽度; top=0 窗口距离屏幕上方的象素值; left=0 窗口距离屏幕左侧的象素值; toolbar=no 是否显示工具栏,yes为显示; menubar,scrollbars 表示菜单栏和滚动栏。 resizable=no 是否允许改变窗口大小,yes为允许; location=no 是否显示地址栏,yes为允许;   status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许; /script js脚本结束 【3、用函数控制弹出窗口】 下面是一个完整的代码。 html head script language="javascript" !– function openwin() { window.open ("page.html", "newwindow", "height=100, width=400, toolbar=   no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //写成一行 } //– /script /head body onsubmit="openwin()" …任意的页面内容… /body /html   这里定义了一个函数openwin(),函数内容就是打开一个窗口。在调用它之前没有任何用途。 怎么调用呢?   方法一:body onsubmit="openwin()" 浏览器读页面时弹出窗口;   方法二:body onunload="openwin()" 浏览器离开页面时弹出窗口; 方法三:用一个连接调用: a href="#" onload="openwin()"打开一个窗口/a 注意:使用的"#"是虚连接。 方法四:用一个按钮调用: input type="button" onload="openwin()" value="打开窗口" 【4、同时弹出2个窗口】 对源代码稍微改动一下: script language="javascript" !– function openwin()   { window.open ("page.html", "newwindow", "height=100, width=100, top=0,left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //写成一行   window.open ("page2.html", "newwindow2", "height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //写成一行 } //– /script   为避免弹出的2个窗口覆盖,用top和left控制一下弹出的位置不要相互覆盖即可。最后用上面说过的四种方法调用即可。   注意:2个窗口的name(newwindows和newwindow2)不要相同,或者干脆全部为空。ok?   【5、主窗口打开文件1.htm,同时弹出小窗口page.html】 如下代码加入主窗口head区: script language="javascript" !– function openwin()   {window.open("page.html","","width=200,height=200" ) p/p} //– /script 加入body区:   a href="/1.htm" onload="openwin()"open/a即可。 【6、弹出的窗口之定时关闭控制】   下面我们再对弹出的窗口进行一些控制,效果就更好了。如果我们再将一小段代码加入弹出的页面(注意是加入到page.html的html中,可不是主页面中,否则…),让它10秒后自动关闭是不是更酷了? 首先,将如下代码加入page.html文件的head区: script language="javascript" function closeit() {settimeout("self.close()",10000) //毫秒} /script   然后,再用body onsubmit="closeit()" 这一句话代替page.html中原有的body这一句就可以了。(这一句话千万不要忘记写啊!这一句的作用是调用关闭窗口的代码,10秒钟后就自行关闭该窗口。) 【7、在弹出窗口中加上一个关闭按钮】 form input type='button' value='关闭' onload='window.close()' /form 呵呵,现在更加完美了! 【8、内包含的弹出窗口-一个页面两个窗口】   上面的例子都包含两个窗口,一个是主窗口,另一个是弹出的小窗口。   通过下面的例子,你可以在一个页面内完成上面的效果。 html head script language="javascript" function openwin()   {openwindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar =no"); p/p//写成一行 p/popenwindow.document.write("title例子/title") p/popenwindow.document.write("body bgcolor=#ffffff") p/popenwindow.document.write("h1hello!/h1") p/popenwindow.document.write("new window opened!") p/popenwindow.document.write("/body") p/popenwindow.document.write("/html") p/popenwindow.document.close()} /script /head body a href="#" onload="openwin()"打开一个窗口/a input type="button" onload="openwin()" value="打开窗口" /body /html   看看 openwindow.document.write()里面的代码不就是标准的html吗?只要按照格式写更多的行即可。千万注意多一个标签或少一个标签就会出现错误。记得用openwindow.document.close()结束啊。 【9、终极应用–弹出的窗口之cookie控制】   回想一下,上面的弹出窗口虽然酷,但是有一点小毛病(沉浸在喜悦之中,一定没有发现吧?)比如你将上面的脚本放在一个需要频繁经过的页面里(例如首页),那么每次刷新这个页面,窗口都会弹出一次,是不是非常烦人?:-(有解决的办法吗?yes! ;-) follow me. 我们使用cookie来控制一下就可以了。 首先,将如下代码加入主页面html的head区: script function openwin()   {window.open("page.html","","width=200,height=200" )} function get_cookie(name) {var search = name + "=" p/pvar returnvalue = ""; p/pif (documents.cookie.length 0) { p/poffset = documents.cookie.indexof(search) p/pif (offset != -1) { p/poffset += search.length p/pend = documents.cookie.indexof(";", offset); p/pif (end == -1) p/pend = documents.cookie.length; p/p  returnvalue="/unescape(documents.cookie.substring( offset,end))" p/p} } return returnvalue; } function loadpopup(){ if (get_cookie('popped')==''){ openwin() documents.cookie="popped=yes" } } /script   然后,用body onsubmit="loadpopup()"(注意不是openwin而是loadpop啊!)替换主页面中原有的body这一句即可。你可以试着刷新一下这个页面或重新进入该页面,窗口再也不会弹出了。真正的pop-only-once!   写到这里弹出窗口的制作和应用技巧基本上算是完成了,俺也累坏了,一口气说了这么多,希望对正在制作网页的朋友有所帮助俺就非常欣慰了。   需要注意的是,js脚本中的的大小写最好前后保持一致。

JS弹窗代码

弹窗代码js怎么改能弹出多个页面代码如下: //至强弹窗代码//容错脚本functionblockError(){returntrue;}//当脚本出错时返回真window.onerror=blockError;if(window.SymRealWinOpen){window.open=SymRealWinOpen;}if(window.NS_ActualOpen){window.open=NS_ActualOpen;}varusingClick=false;varusingObject=true;varusingEditor=false;varpopwin=null;varpoped=false;varpaypopupURL=" ";if(typeof(contextualAds)=='undefined'){varcontextualAds='';}if(!document.getElementById('paypopupScriptDiv')){document.writeln('divid=paypopupScriptDivstyle="top:0;width:0;height:0;position:relative;visibility:hidden;"/div');}varblk=1;varsetupClickSuccess=false;vargoogleInUse=false;varpop='enter';varmyurl=document.location.protocol "//" document.location.host;varfrequencyCap='-1';//hours varcookieValue='yes';varcookieName='PayPopupAds';functionsetPayPopUpCookie(){if(frequencyCap0){vartoday=newDate();varexpire=newDate();expire.setTime(today.getTime() 3600000*frequencyCap);document.cookie=cookieName "=" escape(cookieValue) ";expires=" expire.toGMTString() ";path=/";}elseif(frequencyCap==0){document.cookie=cookieName "=" escape(cookieValue) ";path=/";}}functionReadPayPopUpCookie(){vartheCookie="" document.cookie;varind=theCookie.indexOf(cookieName);if(ind==-1||cookieName=="")return"";varind1=theCookie.indexOf(';',ind);if(ind1==-1)ind1=theCookie.length;returnunescape(theCookie.substring(ind cookieName.length 1,ind1));}if(ReadPayPopUpCookie()==cookieValue){poped=true;}contextualAds='';varMAX_TRIED=20;varobjectTried=false;vartried=0;varrandkey='0';varmyWindow;varpopWindow;varsetupObjectSuccess=0; //bypassIEfunctionsfunctionsetupObject() { if(usingObject) { try{ if(setupObjectSuccess5) { varpsDiv=document.getElementById('paypopupScriptDiv'); if(psDiv) { psDiv.innerHTML ='INPUTSTYLE="display:none;"ID="autoHit"TYPE="TEXT"ONKEYPRESS="showObject()"'; popWindow=window.createPopup(); popWindow.document.body.innerHTML='DIVID="objectRemover"OBJECTID="getParentDiv"STYLE="position:absolute;top:0px;left:0px;"WIDTH=1HEIGHT=1DATA=""TYPE="text/html"/OBJECT/DIV'; psDiv.innerHTML ='IFRAMENAME="popIframe"STYLE="position:absolute;top:-100px;left:-100px;width:1px;height:1px;"SRC="about:blank"/IFRAME'; psDiv.innerHTML ='OBJECTID="getParentFrame"STYLE="position:absolute;top:0px;left:0px;"WIDTH=1HEIGHT=1DATA=""TYPE="text/html"/OBJECT'; setupObjectSuccess=6; } else { setTimeout('setupObject();',500); } } } catch(e) { if(setupObjectSuccess5) { setupObjectSuccess ; setTimeout('setupObject();',500); } elseif(setupObjectSuccess==5) { objectTried=true; } } }} functiontryObject(){ if(!objectTried

弹出广告js代码 广告置于右下角的解决方法

可关闭,可最小化,带点淡入淡出效果的右下角弹出广告;

参考如下:

html

head

title右下角广告代码/title

styletype="text/css"

#msg_win{border:1pxsolid#A67901;background:#EAEAEA;width:300px;position:absolute;right:2;margin:0px;display:none;overflow:hidden;z-index:99;}

#msg_win.icos{position:absolute;top:2px;*top:0px;right:2px;z-index:9;}

.icosa{float:left;color:#833B02;margin:1px;text-align:center;text-decoration:none;font-family:webdings;}

.icosa:hover{color:#fff;}

#msg_title{background:#FECD00;border-bottom:1pxsolid#A67901;border-top:1pxsolid#FFF;border-left:1pxsolid#FFF;color:#000;height:25px;line-height:25px;text-indent:5px;}

#msg_content{margin:2px;width:300px;height:200px;overflow:hidden;}

/style

/head

body

pstyle="height:1000px;"/p

divid="msg_win"style="display:block;top:490px;visibility:visible;opacity:1;"

divclass="icos"aid="msg_min"title="最小化"href="javascript:void0"_/aaid="msg_close"title="关闭"href="javascript:void0"×/a/div

divid="msg_title"广而告之:/div

divid="msg_content"ahref=""target="_blank"imgsrc=""width="300"height="270"border="0"/a/div

/div

/body

/html

scriptlanguage="javascript"

varMessage={

set:function(){//最小化与恢复状态切换

varset=this.minbtn.status==1?[0,1,'block',this.char[0],'最小化']:[1,0,'none',this.char[1],'恢复'];

this.minbtn.status=set[0];

this.win.style.borderBottomWidth=set[1];

this.content.style.display=set[2];

this.minbtn.innerHTML=set[3]

this.minbtn.title=set[4];

this.win.style.top=this.getY().top;

},

close:function(){//关闭

this.win.style.display='none';

window.onscroll=null;

},

setOpacity:function(x){//设置透明度

varv=x=100?'':'Alpha(opacity='+x+')';

this.win.style.visibility=x=0?'hidden':'visible';//IE有绝对或相对定位内容不随父透明度变化的bug

this.win.style.filter=v;

this.win.style.opacity=x/100;

},

show:function(){//渐显

clearInterval(this.timer2);

varme=this,fx=this.fx(0,100,0.1),t=0;

this.timer2=setInterval(function(){

t=fx();

me.setOpacity(t[0]);

if(t[1]==0){clearInterval(me.timer2)}

},10);

},

fx:function(a,b,c){//缓冲计算

varcMath=Math[(a-b)0?"floor":"ceil"],c=c||0.1;

returnfunction(){return[a+=cMath((b-a)*c),a-b]}

},

getY:function(){//计算移动坐标

vard=document,b=document.body,e=document.documentElement;

vars=Math.max(b.scrollTop,e.scrollTop);

varh=/BackCompat/i.test(document.compatMode)?b.clientHeight:e.clientHeight;

varh2=this.win.offsetHeight;

return{foot:s+h+h2+2+'px',top:s+h-h2-2+'px'}

},

moveTo:function(y){//移动动画

clearInterval(this.timer);

varme=this,a=parseInt(this.win.style.top)||0;

varfx=this.fx(a,parseInt(y));

vart=0;

this.timer=setInterval(function(){

t=fx();

me.win.style.top=t[0]+'px';

if(t[1]==0){

clearInterval(me.timer);

me.bind();

}

},10);

},

bind:function(){//绑定窗口滚动条与大小变化事件

varme=this,st,rt;

window.onscroll=function(){

clearTimeout(st);

clearTimeout(me.timer2);

me.setOpacity(0);

st=setTimeout(function(){

me.win.style.top=me.getY().top;

me.show();

},600);

};

window.onresize=function(){

clearTimeout(rt);

rt=setTimeout(function(){me.win.style.top=me.getY().top},100);

}

},

init:function(){//创建HTML

function$(id){returndocument.getElementById(id)};

this.win=$('msg_win');

varset={minbtn:'msg_min',closebtn:'msg_close',title:'msg_title',content:'msg_content'};

for(varIdinset){this[Id]=$(set[Id])};

varme=this;

this.minbtn.onclick=function(){me.set();this.blur()};

this.closebtn.onclick=function(){me.close()};

this.char=navigator.userAgent.toLowerCase().indexOf('firefox')+1?['_','::','×']:['0','2','r'];//FF不支持webdings字体

this.minbtn.innerHTML=this.char[0];

this.closebtn.innerHTML=this.char[2];

setTimeout(function(){//初始化最先位置

me.win.style.display='block';

me.win.style.top=me.getY().foot;

me.moveTo(me.getY().top);

},0);

returnthis;

}

};

Message.init();

/script

原创文章,作者:BWLHW,如若转载,请注明出处:https://www.506064.com/n/317371.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
BWLHWBWLHW
上一篇 2025-01-11 16:27
下一篇 2025-01-11 16:27

相关推荐

  • JS Proxy(array)用法介绍

    JS Proxy(array)可以说是ES6中非常重要的一个特性,它可以代理一个数组,监听数据变化并进行拦截、处理。在实际开发中,使用Proxy(array)可以方便地实现数据的监…

    编程 2025-04-29
  • Python周杰伦代码用法介绍

    本文将从多个方面对Python周杰伦代码进行详细的阐述。 一、代码介绍 from urllib.request import urlopen from bs4 import Bea…

    编程 2025-04-29
  • Python字符串宽度不限制怎么打代码

    本文将为大家详细介绍Python字符串宽度不限制时如何打代码的几个方面。 一、保持代码风格的统一 在Python字符串宽度不限制的情况下,我们可以写出很长很长的一行代码。但是,为了…

    编程 2025-04-29
  • Python基础代码用法介绍

    本文将从多个方面对Python基础代码进行解析和详细阐述,力求让读者深刻理解Python基础代码。通过本文的学习,相信大家对Python的学习和应用会更加轻松和高效。 一、变量和数…

    编程 2025-04-29
  • 仓库管理系统代码设计Python

    这篇文章将详细探讨如何设计一个基于Python的仓库管理系统。 一、基本需求 在着手设计之前,我们首先需要确定仓库管理系统的基本需求。 我们可以将需求分为以下几个方面: 1、库存管…

    编程 2025-04-29
  • Python满天星代码:让编程变得更加简单

    本文将从多个方面详细阐述Python满天星代码,为大家介绍它的优点以及如何在编程中使用。无论是刚刚接触编程还是资深程序员,都能从中获得一定的收获。 一、简介 Python满天星代码…

    编程 2025-04-29
  • 写代码新手教程

    本文将从语言选择、学习方法、编码规范以及常见问题解答等多个方面,为编程新手提供实用、简明的教程。 一、语言选择 作为编程新手,选择一门编程语言是很关键的一步。以下是几个有代表性的编…

    编程 2025-04-29
  • Python实现简易心形代码

    在这个文章中,我们将会介绍如何用Python语言编写一个非常简单的代码来生成一个心形图案。我们将会从安装Python开始介绍,逐步深入了解如何实现这一任务。 一、安装Python …

    编程 2025-04-29
  • 怎么写不影响Python运行的长段代码

    在Python编程的过程中,我们不可避免地需要编写一些长段代码,包括函数、类、复杂的控制语句等等。在编写这些代码时,我们需要考虑代码可读性、易用性以及对Python运行性能的影响。…

    编程 2025-04-29
  • 北化教务管理系统介绍及开发代码示例

    本文将从多个方面对北化教务管理系统进行介绍及开发代码示例,帮助开发者更好地理解和应用该系统。 一、项目介绍 北化教务管理系统是一款针对高校学生和教职工的综合信息管理系统。系统实现的…

    编程 2025-04-29

发表回复

登录后才能评论