Bootstrap 4 仿Mac Growl样式toast消息框插件
源码介绍
Hullabaloo.js是一款基于Bootstrap 4 仿Mac Growl样式toast消息框插件。该jquery插件可以制作出类似Mac系统的toast消息框,并且使用简单。它的特点还有: 在页面中引入jquery,bootstrap4相关文件,以及font-awsome字体文件,和hullabaloo.js文件。 可以使用一个按钮来触发toast消息框。 在页面DOM元素加载完毕之后,通过 可以通过下面的语法来触发消息框。 Hullabaloo.js 基于Bootstrap 4 仿Mac Growl样式toast消息框插件可用的配置参数有: Hullabaloo.js 基于Bootstrap 4 仿Mac Growl样式toast消息框插件的github地址为:https://github.com/OzyAst/Hullabaloo简要教程
使用方法
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/hullabaloo.js"></script>
HTML结构
<button class="btn btn-info m-2" onclick="$.hulla.send('这是一则信息', 'info')">Info</button>
初始化插件
new hullabaloo()
方法来初始化该插件。
var hulla = new hullabaloo();
hulla.send("Success Message", "success");
hulla.send("Info Message", "info");
hulla.send("Warning Message", "warning");
hulla.send('Danger Message', 'danger')
hulla.send('Light Theme', 'light')
hulla.send('Dark Theme', 'dark')
配置参数
var hulla = new hullabaloo({
// where to append the notifications
ele: "body",
// offset
offset: {
from: "top",
amount: 20
},
// or 'center', 'left'
align: "right",
// width
width: 250,
// for auto dismiss
delay: 5000,
allow_dismiss: true,
// space between notification boxes
stackup_spacing: 10,
// notification message here
text: "Notification Message Here",
// Font Awesome icon
icon: "times-circle",
// styles
status: "danger",
// additional CSS classes
alertClass: "",
// callback functions
fnStart: false,
fnEnd: false,
fnEndHide: false,
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » Bootstrap 4 仿Mac Growl样式toast消息框插件
发表评论 取消回复