All Projects → victorb → Ngprogress

victorb / Ngprogress

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

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to Ngprogress

Missme
Same Old Android Progress Dialog
Stars: ✭ 49 (-96.75%)
Mutual labels:  progressbar
Googleprogressbar
Android library to display progress like google does in some of his services.
Stars: ✭ 1,286 (-14.66%)
Mutual labels:  progressbar
Spinner
Go (golang) package with 90 configurable terminal spinner/progress indicators.
Stars: ✭ 1,637 (+8.63%)
Mutual labels:  progressbar
Progress Bar
Multiplatform netstandard 2.0 C# console progress bar, with support for single or multithreaded progress updates.
Stars: ✭ 53 (-96.48%)
Mutual labels:  progressbar
Next Progressbar
Add a progress bar to next.js
Stars: ✭ 84 (-94.43%)
Mutual labels:  progressbar
Pictureprogressbar
a ProgressBar with Picture and Animation
Stars: ✭ 100 (-93.36%)
Mutual labels:  progressbar
Niceprogressbar
a nice progressbar for android
Stars: ✭ 37 (-97.54%)
Mutual labels:  progressbar
Q42.winrt
Useful library for data driven Windows Phone 8 and Windows 8 C# / XAML WinRT projects
Stars: ✭ 111 (-92.63%)
Mutual labels:  progressbar
Coolindicator
A dazzling indicator
Stars: ✭ 85 (-94.36%)
Mutual labels:  progressbar
Downloadprogressbutton
An awseome Download Progress Button with Progress.(带下载进度的按钮)
Stars: ✭ 106 (-92.97%)
Mutual labels:  progressbar
Toothyprogress
A polyline determinated ProgressBar written in Kotlin
Stars: ✭ 56 (-96.28%)
Mutual labels:  progressbar
Segmentedarcview
Unique & beautiful segmented arc view with rich customisation options! RTL supported.
Stars: ✭ 67 (-95.55%)
Mutual labels:  progressbar
Ruby Progressbar
Ruby/ProgressBar is a text progress bar library for Ruby.
Stars: ✭ 1,378 (-8.56%)
Mutual labels:  progressbar
Progress
Progress replacing ProgressDialog
Stars: ✭ 52 (-96.55%)
Mutual labels:  progressbar
Progressmeter
Measuring the progress with annotations 🔱
Stars: ✭ 107 (-92.9%)
Mutual labels:  progressbar
Spincounterview
🎡 一个类似于码表变化的旋转计数器动画控件
Stars: ✭ 47 (-96.88%)
Mutual labels:  progressbar
Delayedprogress
ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI.
Stars: ✭ 95 (-93.7%)
Mutual labels:  progressbar
Arcseekbar
🎡 ArcSeekBar 一个弧形可拖动进度条控件。弧形大小,弧度,颜色渐变等配置完全可定制化
Stars: ✭ 115 (-92.37%)
Mutual labels:  progressbar
Cpptqdm
(unofficial) tqdm-like single header c++ pretty progress bar
Stars: ✭ 109 (-92.77%)
Mutual labels:  progressbar
Typrogressbar
Custom animating gradient progress bar
Stars: ✭ 106 (-92.97%)
Mutual labels:  progressbar

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].