Bootstrap3 Toast消息框插件
源码介绍
Bootoast是一款Bootstrap3 Toast消息框插件。通过Bootoast插件你可以非常方便的制作Toast消息框效果,并且插件提供了各种参数来控制Toast消息框。 在页面中引入bootstrap.min.css文件,bootoast.css,以及jquery和bootoast.js文件。 Bootoast插件的默认配置如下: Bootoast-Bootstrap3 Toast消息框插件的github地址为:https://github.com/odahcam/bootoast简要教程
使用方法
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootoast.css">
<script src="jquery.min.js"></script>
<script src="bootoast.js"></script>
API
bootoast({
message: 'Helo!',
type: 'info',
position: 'bottom-center',
icon: undefined,
timeout: false,
animationDuration: 300,
dismissable: true
});
配置参数
参数
默认值
描述
message
'Helo!'
Toast消息,可以是任何html字符串。
type
'info'
bootstrap情景类的class名称。
icon
根据选择的情景类来决定。
Bootstrap 3 glyphicons名称。
position
'bottom-center'
Toast消息显示的位置。可以是top,left-top,right-top,bottom,left-bottom,right-bottom。
timeout
false
Toast自动隐藏的时间。设置为false或0表示不会自动隐藏。
dismissable
true
是否在Toast上显示×按钮。
animationDuration
300
Toast隐藏动画的持续时间,单位毫秒。
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » Bootstrap3 Toast消息框插件
发表评论 取消回复