jquery 吐司_SnackbarJS: SnackbarJS 是轻量级的,强大的 jQuery 插件,用来创建 Material Design snackbars 和吐司效果...

SnackbarJS

SnackbarJS is a lightweight and jQuery powered plugin made to work just like the tooltips in Bootstrap.

Include it in your html page with:

...

To use it in HTML:

Click me

or with javascript:

$.snackbar({content: "This is my awesome snackbar!"});

Options

Following options are supported to customize look and behaviour:

var options = {

content: "Some text", // text of the snackbar

style: "toast", // add a custom class to your snackbar

timeout: 100, // time in milliseconds after the snackbar autohides, 0 is disabled

htmlAllowed: true, // allows HTML as content value

onClose: function(){ } // callback called when the snackbar gets closed.

}

$.snackbar(options);

Or in HTML:

data-content="Some text"

data-style="toast"

data-timeout="100"

data-html-allowed="true">

Click me

Tip: SnackbarJS returns always a jQuery element which corresponds to the snackbar DOM element, you can use it to get the ID of the element, and then do other operations with it.

Heads up!: The onClose callback is not available using the HTML syntax.

Interact with snackbars

Once you have created a snackbar you can show, hide or toggle it with:

$("#snackbarid").snackbar("show");

$("#snackbarid").snackbar("hide");

$("#snackbarid").snackbar("toggle");

#snackbarid can be both the button with the data-toggle=snackbar attribute or the snackbar element.

Calling it on a non-existing snackbar will create it before executing the specificed action.

Demo

To see SnackbarJS in action visit the demo page.

Browserify

This library is UMD compatible, so you can use it in this way:

var jquery = require('jquery');

require('snackbarjs');

var options = {

...

}

jquery.snackbar(options);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值