文件名称:jQuery通知栏插件peekABar.zip
文件大小:42KB
文件格式:ZIP
更新时间:2022-08-05 22:38:11
开源项目
peekABar 可以创建带有很多定制化选项的通知栏 jQuery 插件。示例代码:// Create a bar var bar = $.peekABar({ html: 'Custom Message', delay: 2000, autohide: true, padding: '2em', backgroundColor: 'rgb(195, 195, 195)', animation: { type: 'fade', duration: '2000' }, opacity: '0.8', cssClass: 'custom-class', position: 'bottom', closeOnClick: true onShow: function() { console.log('called after bar is shown'); }, onHide: function() { console.log('called after bar is hidden'); } }); // Show the bar bar.show(); // Hide the bar bar.hide(); // Show the bar with custom HTML // This call will override the HTML // set in any previous definitions. bar.show({ html: 'Overrides all, puny human.' }); 标签:peekABar
【文件预览】:
jquery.peekABar-master
----.eslintrc(189B)
----package.json(812B)
----LICENSE(1KB)
----package-lock.json(115KB)
----dist()
--------css()
--------js()
----Gruntfile.js(2KB)
----src()
--------js()
--------scss()
----.gitignore(57B)
----README.md(3KB)
----bower.json(547B)
----.editorconfig(414B)