常用的弹出广告及背投广告代码
本帖最后由 小麦子 于 2024-10-18 23:57 编辑弹出广告和背景广告在大网站用的比较多,也是站长的必备代码,本代码段中包括弹出窗口广告以及背投广告两种形式,根据自己的需要,你可以随意选择。
<html>
<head>
<meta http-equiv="Content-Type" mrc="text/html; charset=utf-8" />
<title>常用的弹出广告及背投广告代码</title>
</head>
<body>
<!--背投-->
<SCRIPT language=JavaScript1.2>
function openWindowBack() {
var popUpWin2 = open("https://www.niuniubbs.com/forum-83-1.html", "popUpWin2", "width=1,height=1,top=4000,left=3000");
}
try{
aryADSeq.push("openWindowBack()");
}catch(e){
openWindowBack();
}
</SCRIPT>
<!--背投结束-->
<!--前弹窗口-->
<SCRIPT language=JavaScript1.2>
function openWindowFront() {
var popUpWin = open("https://www.niuniubbs.com/", "popUpWin", "toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width=300,height=250");
}
try{
aryADSeq.push("openWindowFront()");
}catch(e){
openWindowFront();
}
</SCRIPT>
</body>
</html>
页:
[1]