jQuery Notis是一款輕量級的jQuery插件,用于快速創建優雅的通知消息。它讓你輕松地向用戶發送提示或警告信息,同時提供了強大的擴展性,使你可以自定義通知的外觀和行為。
// 引入 jQuery 和 notis.js 文件// 創建一個成功提示 $.notis({ text: '操作成功', type: 'success' }); // 創建一個警告提示,并設置自動關閉時間 $.notis({ text: '請先登錄', type: 'warning', autohide: true, autohideDelay: 3000 }); // 使用自定義樣式創建一個通知 $.notis({ text: '歡迎使用 jQuery Notis!', type: 'custom', cssClass: 'my-notis', onInit: function($notis) { $notis.css({ 'background-color': '#f1c40f', 'color': '#fff' }); }, onClose: function($notis) { $notis.css({ 'background-color': '#fff', 'color': '#333' }); } });
不僅如此,你還可以對notis進行更高級的配置,如自定義容器、動畫效果、事件處理等。使用jQuery Notis,讓你的網站更加智能、時尚、人性化。