Angularjs 预载指示器
ngActivityIndicator
简单Angular.js应用程序的预载动画provider
ngActivityIndicator 是一个小巧的,一体化方案,可定制皮肤,仅依赖 Angular.js
安装
可以手动下载需要的ngActivityIndicator文件,或者通过bower
前端包管理器来安装:
1 | bower install ngActivityIndicator |
使用
需要在项目中包含 ngActivityIndicator.js
和ngActivityIndicator.css
文件(最小要求),然后在你的指令,控制器或服务中使用#activityIndicator
, 例如在控制器中:
1 | var app = angular.module('exampleApp', ['ngActivityIndicator']); |
可以使用ngActivityIndicator
指令来显示内置的动画, 也可以在HTML中创建自己的的预载器, 应用CSS来隐藏/显示:
1 | <body> |
Also this service can be easily used with loading SVG concept by Brett Jackson. But be aware of limited browser SVG support and user experience issues with perceptual loading time -
还有该服务还可以用于加载SVG,
该服务可以加载SVG的概念由布雷特杰克逊容易使用。但要知道有限的浏览器支持SVG和感性加载时间的用户体验的问题
API
API高度借鉴Objective-C
的来自UIKit
框架的UIActivityIndicatorView
类.
startAnimating()
设置$rootScope.AILoading
为true
启动预载器动画.stopAnimating(delay)
设置$rootScope.AILoading
为false
停止预载器动画.isAnimating()
检查是否一个活动指示器有动画效果.setActivityIndicatorStyle()
有多个内置的样式可以选择. 默认样式为CircledGrey
, 可以通过如下设置来改变:
1 | angular.module('yourModule', ['ngActivityIndicator']) |
指令
Module is shiped with helpful directive. It is called as ngActivityIndicator and can behave differently based on the tag or restrict it’s used with.
当预载器指令添加到<body>
标签后, 预载器被添加到Angular.js应用,基于动画状态($rootScope.AILoading
)显示和隐藏ng-view
.这是推荐和最常用的情况,比如:
1 | <!-- 指示器自动注入到DOM树中 --> |
If you prefer to manage what to show on preloading mode by yourself, just use it as an element or attribute. Directive will handle animation status automaticly, example:
1 | <body> |
可以添加名称作为指令值来覆盖预载器的样式:
1 | <div ng-activity-indicator="CircledDark"></div> |
内置样式
你可以在默认提供的样式中中选择适合你的, 如果你对默认提供的样式不满意,你也可以创建自定义风格的指示器.
样式名称列表:
1 | CircledWhite / CircledGrey (default) / CircledDark |
如何贡献代码?
如果想要给该模块添加样式? fork仓库并执行pull请求
即可!