可自由配置的jQuery消息提示框插件toast

简介: jquery.toast.js是一款可自由配置的jQuery消息提示框插件。该消息提示框可以自定义背景和前景色,提示框的位置,提示框的显示时间,提示框的动画效果等。

jquery.toast.js是一款可自由配置的jQuery消息提示框插件。该消息提示框可以自定义背景和前景色,提示框的位置,提示框的显示时间,提示框的动画效果等。
tx000689.png

在线演示 下载

安装
可以通过bower或npm来安装该消息提示框插件。

bower install jquery-toast-plugin
npm install jquery-toast-plugin

使用方法
在页面中引入jquery.toast.css文件,jquery和jquery.toast.js文件。

<link type="text/css" rel="stylesheet" href="css/jquery.toast.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.toast.js"></script>

初始化插件
简单文本的消息提示框:

// Non sticky version
$.toast("Lorem ipsum dolor sit amet...")
// Sticky version
$.toast({
   
  text : "Lorem ipsum dolor sit amet...",
  hideAfter : false
})

使用HTML标签的消息提示框:

// Non sticky
$.toast("Let's test some HTML stuff... <a href='#'>github</a>")
// sticky
$.toast({
   
  text : "<strong>Remember!</strong> You can <span style='font-weight: bold; color:red;' class='horribly-styled'>always</span> introduce your own × HTML and <span style='font-size: 18px;'>CSS</span> in the toast.",
  hideAfter : false
})

使用数组作为列表元素的消息提示框:

// Non sticky version
$.toast(["Ubuntu : One of it's kind", "Sublime Text : Productivity unleashed", "HeidiSQL : Just love it", "Github : Just Lovely"])
// Sticky version
$.toast({
   
  text : ["Ubuntu : One of it's kind", "Sublime Text : Productivity unleashed", "HeidiSQL : Just love it", "Github : Just Lovely"],
  hideAfter : false
})

配置参数
自定义动画:

$.toast({
    
  text : "Let's test some HTML stuff... <a href='#'>github</a>", 
  showHideTransition : 'slide'  // It can be plain, fade or slide
})

自定义消息提示框的样式:

$.toast({
    
  text : "......", 
  showHideTransition : 'slide',
  bgColor : 'blue',
  textColor : '#eee',
  allowToastClose : false,
  hideAfter : 5000,
  stack : 5,
  textAlign : 'left',
  position : 'bottom-left'
})
  • text:消息提示框的内容。
  • showHideTransition:消息提示框的动画效果。可取值:plain,fade,slide。
  • bgColor:背景颜色。
  • textColor:文字颜色。
  • allowToastClose:是否显示关闭按钮。
  • hideAfter:设置为false则消息提示框不自动关闭。设置为一个数值则在指定的毫秒之后自动关闭消息提示框。
  • stack:消息栈。
  • textAlign:文本对齐:left, right, center。
  • position:消息提示框的位置:bottom-left 、 bottom-right 、 bottom-center 、 top-left 、 top-right 、 top-center 、 mid-center。

重置消息提示框

var myToast = $.toast('Some toast that needs to be removed.');
myToast.reset(); // remove the toast "Some toast that needs to be removed"

可以通过下面的方法来重置所有的消息提示框:

$.toast().reset('all');

更新消息提示框
你可以通过下面的方法来更新页面上的消息提示框:

var myToast = $.toast({
   
  text : 'Some toast that needs to show the success message after the ajax call.',
  hideAfter : false,
  bgColor : '#E01A31'
});

window.setTimeout(function(){
   
  myToast.update({
   
    text : '<strong>Updated after a few seconds</strong>',
    bgColor : '#23B65D'
  });
}, 5000);
相关文章
uniapp 实现加载效果,消息提示框,模态框
uniapp 实现加载效果,消息提示框,模态框
555 0
|
10天前
|
JavaScript
jQuery实现弹窗消息提示特效插件
这是一个简单的jQuery弹窗消息提示插件,用于网站用户操作提示。包含默认、成功、失败、警告、提示弹窗等不同形式弹出的消息提示效果,轻量简单,欢迎下载!
23 4
|
7月前
|
JavaScript API
uniapp中uview组件库Toast 消息提示 的使用方法
uniapp中uview组件库Toast 消息提示 的使用方法
763 2
|
7月前
|
JavaScript
【UI】 cocomessage消息提示插件
【UI】 cocomessage消息提示插件
88 1
|
JavaScript
原生js写的一个下拉框功能插件
用原生js写的一个下拉框功能插件
206 0
|
JavaScript
jQuery消息提示框插件Tipso
在线演示 本地下载
978 0
|
JavaScript 前端开发
JQuery实现聊天对话框
效果图如下: HTML代码如下: Document .talk_con{ width:600px; height:500px; border:1px so...
1700 0
|
JavaScript
扩展 jQuery datebox控件按钮
功能需求: 自定义扩展,将原先的datebox控件按钮进行自定义的扩展: 1.问题: 对原先的时间按钮控件进行更改扩展,新增 “一刻钟” “半小时” “一小时” 选项。 获取原先的 datebox 对象的原型,进行扩展。
1148 0

相关课程

更多