6个回答
展开全部
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)">' +
'<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;">×</a>' +
'</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毫秒后自动关闭
展开全部
这很简单啊,使用的js,当点击的时候,让这个窗口的style="display:block;"改为style="display:none;"
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用dialog 百度一下,很多代码, 直接考下来用。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个你要跟js一起,然后用事件来做
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你搜索下jquery 弹出层
或者jquery layer 全中文说明 很简单的
或者jquery layer 全中文说明 很简单的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询