基于Bootstrap4的Toast提示插件
源码介绍
这是一款基于bootstrap4的toast插件。该插件能非常方便的生成toast提示效果,不需要编写额外的html代码,非常实用。 在页面中引入下面的文件。 通过下面的方法来创建一个toast效果。 可用的配置参数有: 该基于bootstrap4的toast插件的github网址为:https://github.com/Script47/Toast简要教程
使用方法
<!-- CSS -->
<link rel="stylesheet" href="/path/to/bootstrap.min.css">
<link rel="stylesheet" href="/path/to/toast.min.css">
<!-- JavaScript -->
<script src="/path/to/jquery.min.js"></script>
<script src="/path/to/popper.min.js"></script>
<script src="/path/to/bootstrap.min.js" ></script>
<script src="/path/to/toast.min.js"></script>
初始化插件
$.toast({
title: 'Notice!',
subtitle: '11 mins ago',
content: 'This is a toast message.',
type: 'info',
delay: 3000,
img: {
src: 'image.png',
class: 'rounded',
title: 'Thumbnail Title',
alt: 'Alternative'
},
pause_on_hover: false
});
配置参数
title
:标题。subtitle
:子标题。content
:toast的内容。type
:情景类型:'info', 'success', 'warning', 'error'。delay
:多少时间后自动消失。img
:如果要显示图片,该属性指定图片的信息。pause_on_hover
:是否在鼠标悬停时让toast不消失。
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 基于Bootstrap4的Toast提示插件
发表评论 取消回复