文章目录:
php源码添加广告
你把js代码放到? ?外面就可以了~~~如果是在中间...你就在开始加上?结束加上?就可以了~~
但是别把连续的代码切开就可以了~~~
如果你是要在代码中间加的话~~
你就在js代码前加 echo ' 后面加' 就可以了!
注意!这是改源代码~~
php的源码中有广告代码如何将其屏蔽
你这不算是广告吧,这只是一个插件中个标志的代码,可以修改插件源码去掉也可以用css屏蔽掉去掉:
em{display:none}
由于你截的代码内容不全,无法给出最适合的css,上述代码会吧em标签全部隐藏掉,如果需要修改,吧div标签的class发出来。
在PHP页面中怎样添加弹出广告代码是什么??
PHP网页打开自动弹出广告,五秒后自动关闭的网页代码如下:
新建网页写入代码即可
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
title网页弹出广告窗口 boaer.com/title
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
style type="text/css"
body,html{margin:0;padding:0;font-size:12px;font-family:Arial;font:12px/1 Helvetica, Tahoma, Arial, \5b8b\4f53, sans-serif;}
.fixedMask{position:fixed; display:none;top:0; left:0; z-index:999; width:100%; height:100%; background:#000; filter:alpha(opacity=30); opacity:0.3; }
* html { background:url(*) fixed; }
* html body { margin:0; height:100%; }
* html .fixedMask{ position: absolute; left: expression(documentElement.scrollLeft + documentElement.clientWidth - this.offsetWidth); top: expression(documentElement.scrollTop + documentElement.clientHeight - this.offsetHeight); }
#ad{width:570px;height:345px;border:1px solid #333;border-top-width:5px;position:absolute;z-index:9999;left:50%;margin-left:-290px;top:50%;margin-top:-175px;display:none;}
#ad a{display:block;position:absolute;text-decoration:none;right:0;top:0px;font: 12px/1.5 arial;background:#B50000;padding:2px 5px;color:#fff;}
#ad a:hover{background:red;}
/style
/head
body
iframe scrolling="no" src="" style="width:100%;height:1000px"/iframe
div id="ad"
a href="#1" 关闭/a
img src="" alt="" /
/div
/body
script type="text/javascript"
//![CDATA[
alert('5秒后自动关掉!');
function Mask() {
if (Mask.instance) return Mask.instance;
this.el = document.body.appendChild(document.createElement('DIV'));
this.el.className = 'fixedMask';
Mask.instance = this;
};
Mask.prototype = {
show: function(fn) {
this.el.style.display = 'block';
fnfn();
},
hide: function(fn) {
this.el.style.display = 'none';
fnfn()
}
};
var x=new Mask();
var AD=document.getElementById('ad');
AD.getElementsByTagName('A')[0].onclick=hide;
x.show(function (){
AD.style.display='block';
});
setTimeout(hide,5000);
function hide(){
x.hide(function (){
AD.style.display='none';
})
}
//]]
/script
/html
动关掉!');function Mask() { if (Mask.instance) return Mask.instance; this.el = document.body.appendChil
y,html{margin:0;padding:0;font-size:12px;font-family:Arial;font:12px/1 Helvetica, Tahoma, Arial, \5b8b\4f53, sans-serif;}.fixedMask{position:fixed; d
document.body.appendChild(document.createElement('DIV')); this.el.className = 'fixedMask'; Mask.instance = this;};Mask.prototype = { show: function(