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>

 html的页面中添加

<toaster-container
        toaster-options="{'position-class': 'toast-top-right', 'close-button':true,'body-output-type':'trustedHtml'}"></toaster-container>

  http://www.cnblogs.com/youzhuxiaoyao/p/4953642.html

posted @ 2016-06-14 16:58  飘然离去  阅读(497)  评论(0编辑  收藏  举报