JQuery定时自动消失提示框/弹出框

jQuery弹出提示,效果:

在页面中央显示提示,1.5秒后消失,不影响页面的正常布局。

1 HTML代码
HTML代码显示提示内容,放在页面中任何位置。

2 CSS代码
弹出框参考了 Bootstrap 的样式:

<div class="alert"></div>

2 CSS代码

弹出框参考了 Bootstrap 的样式:

.alert {
display: none;
position: fixed;
top: 50%;
left: 50%;
min-width: 300px;
max-width: 600px;
transform: translate(-50%,-50%);
z-index: 99999;
text-align: center;
padding: 15px;
border-radius: 3px;
}

.alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}

.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}

.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}

.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}

3 Javascript代码
首先,加载JQuery,然后用下面代码实现1.5秒后淡出效果:

$('.alert').html('操作成功').addClass('alert-success').show().delay(1500).fadeOut();
如果不想在HTML中加DIV,可以直接用JS把DIV添加到页面中,如下:

$('').appendTo('body').addClass('alert alert-success').html('操作成功').show().delay(1500).fadeOut();
一般情况下,如果这个方式使用得很频繁,写成函数可以提高复用:

/**

  • 弹出式提示框,默认1.2秒自动消失
  • @param message 提示信息
  • @param style 提示样式,有alert-success、alert-danger、alert-warning、alert-info
  • @param time 消失时间
    */
    var prompt = function (message, style, time)
    {
    style = (style === undefined) ? 'alert-success' : style;
    time = (time === undefined) ? 1200 : time;
    $('')
    .appendTo('body')
    .addClass('alert ' + style)
    .html(message)
    .show()
    .delay(time)
    .fadeOut();
    };

// 成功提示
var success_prompt = function(message, time)
{
prompt(message, 'alert-success', time);
};

// 失败提示
var fail_prompt = function(message, time)
{
prompt(message, 'alert-danger', time);
};

// 提醒
var warning_prompt = function(message, time)
{
prompt(message, 'alert-warning', time);
};

// 信息提示
var info_prompt = function(message, time)
{
prompt(message, 'alert-info', time);
};
这样比用setTimeout()结构更清晰。

未经允许不得转载:紫竹林-程序员中文网 » JQuery定时自动消失提示框/弹出框
关于我们 免责申明 意见反馈 隐私政策
程序员中文网:公益在线网站,帮助学习者快速成长!
关注微信

微信扫码
关注微信

技术交流群
管理员微信号
每天精选资源文章推送
管理员QQ
随时随地碎片化学习
管理员抖音号
发现有趣的