在页面加载时显示PNotify通知

时间:2018-06-28 06:21:03

标签: javascript jquery pnotify

我有一个页面,我想在其中使用 PNotify 显示通知。如何使用 PNotify -javascript库在此页面上显示通知。

1 个答案:

答案 0 :(得分:0)

根据PNotify documentation

$(document).ready(function() {
    (new PNotify({
        title: 'Regular Notice,
        text: 'Check me out! I\'m a notice.',
        type: 'info',
        styling: 'bootstrap3'
    }));
});