×

php的弹窗代码

php的弹窗代码(php弹出窗口)

admin admin 发表于2023-03-28 05:11:08 浏览57 评论0

抢沙发发表评论

本文目录一览:

php如何制作弹出窗口

Javascript属于网络的脚本语言,用来给HTML网页增加动态功能。Javascript弹出窗口的方法:

1,弹出包含提示信息窗口  在script标签中  加入  alert("要现实的内容");

2,弹出新窗口,window对象的open方法可实现弹出窗口,具体代码如下

window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no') //这句要写成一行-php的弹窗代码

参数解释: 

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为允许; 

求php或html点击链接弹出小窗口的代码!

function popup(msg,timer) {

var 

h = $(document).scrollTop() +$(window).height() ;

w = $(window).width();

lw = Math.floor(w/2-200/2);

var ht = 

'div id="popup" style="display:none;position:absolute;top:100%;left:'+

lw+

'px;text-align:center;background:#f6f9cc;border:1px solid #999;width:200px;z-index:1200;box-shadow:0 0 5px rgba(0,0,0,.4)"' +-php的弹窗代码

'div class="popup-content" style="padding:15px"/div' +

'a href="javascript:;" class="close-popup" style="display:inline-block;line-height:20px;position:absolute;right:5px;top:5px;width:20px;text-decoration:none;height:20px;font-family:Arial;font-size:28px;font-weight:bold;text-align:center;color:#777;border-radius:50px;"times;/a' +-php的弹窗代码

'/div';

$('#popup').remove();

$('body').append(ht);

var t ;

function popout() {

$('#popup').animate({

top:'100%'

},500,function() {

$('#popup').hide();

});

}

$('#popup .close-popup').click(function() {

clearTimeout(t);

popout();

}).hover(function() {

$(this).css({

color:'#000'

})

},function() {

$(this).css({

color:'#777'

})

});

$('#popup .popup-content').html(msg);

$('#popup').show().animate({

top:h/2

},500,function() {

t = setTimeout(function() {

popout();

},timer? parseInt(timer):5500)

});

}

把这段代码写在jquery后面,然后直接调用:

popup( '内容',3000);//弹出“内容”,3000毫秒后自动关闭

php程序怎么加弹窗代码

弹窗不是php加的,应该是由js加。可以用php输出一段js弹窗代码就好了。js弹窗代码你查这个“window.open()”;

在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;}-php的弹窗代码

.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; }-php的弹窗代码

* 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); }-php的弹窗代码

#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;}-php的弹窗代码

#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;}-php的弹窗代码

#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