ngProgress

⏳ Angular provider for slim loading bar at the top of the page ( inspired by https://github.com/rstacruz/nprogress )

Github星跟踪图

ngProgress.js

Gitter

Build Status

CDNJS

ngProgress is a provider for angular for showing a loading status of something.
Use cases can be fetching external resources, showing a action taking more-than-normal length
or simple loading between the page views. Prefereble, only for resource heavy sites.

Usage

Download ngProgress.js manually or install with bower

$ bower install ngprogress

Include ngProgress.js ( or ngprogress.min.js) and ngProgress.css in your website.

<script src="app/components/ngprogress/ngprogress.min.js"></script>
<link rel="stylesheet" href="ngProgress.css">

Set ngProgress as a dependency in your module

var app = angular.module('progressApp', ['ngProgress']);

Inject ngProgressFactory in your controller

var MainCtrl = function($scope, $timeout, ngProgressFactory) {}

Create a instance of the progressbar

$scope.progressbar = ngProgressFactory.createInstance();

Use with the API down below

$scope.progressbar.start();
$timeout(function() {
  $scope.progressbar.complete()
}, 1000);

API

  • start - Starts the animation and adds between 0 - 5 percent to loading
    each 400 milliseconds. Should always be finished with ngProgress.complete()
    to hide it
ngProgress.start();
  • setHeight - Sets the height of the progressbar. Use any valid CSS value
    Eg '10px', '1em' or '1%'
ngProgress.setHeight('10px');
  • setColor - Sets the color of the progressbar and it's shadow. Use any valid HTML color
ngProgress.setColor('#fff');
  • status - Returns on how many percent the progressbar is at. Should'nt be needed
var status = ngProgress.status();
  • stop - Stops the progressbar at it's current location
ngProgress.stop();
  • set - Set's the progressbar percentage. Use a number between 0 - 100. If 100 is provided, complete will be called.
ngProgress.set(100);
  • reset - Resets the progressbar to percetage 0 and therefore will be hided after it's rollbacked
ngProgress.reset();
  • complete - Jumps to 100% progress and fades away progressbar
ngProgress.complete();
  • setParent - Changes the parent of the DOM element which visualizes the progress bar
ngProgress.setParent(document.getElementById('container'));
var element = ngProgress.getDomElement();

Releasing a new version

The current (and quite hacky solution, honestly) to make a new release:

  • Update package.json to have new version.

  • Commit changes

  • Run bower version patch, minor, major

Publishing new Github-pages version

Merge master into gh-pages, run grunt and push to Github

License

The MIT License (MIT)

Copyright (c) 2013 Victor Bjelkholm

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

主要指标

概览
名称与所有者victorb/ngProgress
主编程语言JavaScript
编程语言JavaScript (语言数: 3)
平台
许可证MIT License
所有者活动
创建于2013-08-21 03:44:05
推送于2018-11-07 23:07:44
最后一次提交2018-11-07 23:07:44
发布数15
最新版本名称v1.1.3 (发布于 )
第一版名称0.0.1 (发布于 2013-08-21 13:38:44)
用户参与
星数1.5k
关注者数38
派生数236
提交数166
已启用问题?
问题数85
打开的问题数16
拉请求数29
打开的拉请求数6
关闭的拉请求数15
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?