js炫酷消息通知插件
源码介绍
这是一款js炫酷消息通知插件。该js消息通知插件自带4种情景模式,可以配置消息通知的标题、内容、图标和操作按钮等。 在页面中引入naranja.min.js和naranja.min.css文件。 使用下面的方法来构造一个消息通知对象。 可以使用的情景模式还有: js消息通知插件的github地址为:https://github.com/e1016/naranja简要教程
使用方法
<link href="css/naranja.min.css" rel="stylesheet">
<script type="text/javascript" src="js/naranja.js"></script>
初始化插件
naranja().log({
title: 'Notification Title', // <- required
text: 'Here goes a description for notifiaction', // <- required
icon: true or false, // <- unrequired, default true,
timeout: 2000 or 'keep', // <- unrequired, default 3000 miliseconds
buttons: [
{
text: 'OK',
click: function (e) {
// click event close notifiaction
// unless you use preventClose method
e.preventClose()
// if you want close notifiaction
// manually, use closeNotification
e.closeNotification()
}
},
{
text: 'Cancel',
click: function () {
// make something here...
// you can (but you should not)
// add infinity buttons
}
}
]
})
naranja().log({ ...
naranja().success({ ...
naranja().warn({ ...
naranja().error({ ...
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » js炫酷消息通知插件
发表评论 取消回复