| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

Toaster - AngularJS 的无堵塞消息提醒

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

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1431392407357.html
Toaster Web框架 angularjs