gpt4 book ai didi

jquery noty.js 禁用点击隐藏

转载 作者:行者123 更新时间:2023-12-03 22:50:17 27 4
gpt4 key购买 nike

我正在使用 noty.js 插件 ( http://ned.im/noty/ ) 向用户显示状态信息。如果用户在显示 noty.js 消息时点击该消息,该消息将被隐藏。

如何禁用点击隐藏功能?我只是希望该消息一直显示,直到我自动隐藏它或我的程序命令隐藏它。

谢谢。

最佳答案

根据文档,以下是默认值:

$.noty.defaults = {
layout: 'top',
theme: 'defaultTheme',
type: 'alert',
text: '', // can be html or string
dismissQueue: true, // If you want to use queue feature set this true
template: '<div class="noty_message"><span class="noty_text"></span><div class="noty_close"></div></div>',
animation: {
open: {height: 'toggle'},
close: {height: 'toggle'},
easing: 'swing',
speed: 500 // opening & closing animation speed
},
timeout: false, // delay for closing event. Set false for sticky notifications
force: false, // adds notification to the beginning of queue when set to true
modal: false,
maxVisible: 5, // you can set max visible notification for dismissQueue true option,
killer: false, // for close all notifications before show
closeWith: ['click'], // ['click', 'button', 'hover']
callback: {
onShow: function() {},
afterShow: function() {},
onClose: function() {},
afterClose: function() {}
},
buttons: false // an array of buttons
};

注意这个属性:

closeWith: ['click'], // ['click', 'button', 'hover']

如果您调用:

noty({
...
closeWith: []
});

那么当您点击它时它不会关闭。

关于jquery noty.js 禁用点击隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24501665/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com