Toaster - AngularJS 的无堵塞消息提醒

jopen 9年前

AngularJS Toaster 是 AngularJS 的扩展,实现了无堵塞消息通知。该项目对 Toastr 进行改造,原来的 Toastr 只支持 jQuery,而 AngularJS Toaster 只需要依赖 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>

项目主页:http://www.open-open.com/lib/view/home/1431392407357