這是一款js炫酷訊息通知外掛。該js訊息通知外掛自帶4種情景模式,可以配置訊息通知的標題、內容、圖示和操作按鈕等。
演示 下載
使用方法
在頁面中引入naranja.min.js和naranja.min.css檔案。
< link href="css/naranja.min.css" rel="stylesheet"> < script type="text/javascript" src="js/naranja.js">
初始化外掛
使用下面的方法來構造一個訊息通知物件。
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({ ...