AngularJS Toaster
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/jirikavi/AngularJS-Toaster
- 软件文档: https://github.com/jirikavi/AngularJS-Toaster
软件介绍
AngularJS Toaster 是 AngularJS 的扩展,实现了无堵塞消息通知。该项目对 Toastr 进行改造,原来的 Toastr 只支持 jQuery,而 AngularJS Toaster 只需要依赖 AngularJS 即可。
示例代码:
// Display an info toast with no title
angular.module('main', ['toaster'])
.controller('myController', function($scope, toaster) {
$scope.pop = function(){
toaster.pop('success', "title", "text");
};
});<div ng-controller="myController"> <button ng-click="pop()">Show a Toaster</button> </div>
