npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ionic.atlas.progress

v0.0.2

Published

A header progress bar using the style of Uber

Downloads

9

Readme

Ionic.atlas.progress

An Ionic progress bar for the Ionic header using the uber style

Status

npm version Bower version GitHub license

Demo

Ionic Atlas Progress Demo Image

Ionic Play Demo

Using

Installing via bower

bower install ionic.atlas.progress

Add the following to your index.html:

<link href="lib/ionic.atlas.progress/dist/ionic.atlas.progress.min.css" rel="stylesheet">
<script src="lib/ionic.atlas.progress/dist/ionic.atlas.progress.min.js"></script>

Installing via npm

npm install ionic.atlas.progress

Add the following to your index.html:

<link href="node_modules/ionic.atlas.progress/dist/ionic.atlas.progress.min.css" rel="stylesheet">
<script src="node_modules/ionic.atlas.progress/dist/ionic.atlas.progress.min.js"></script>

Integrate into app

Add the plugin to your app:

angular.module('yourApp', ['ionic', 'atlasProgress'])

Now you can use the directive:

<ion-header-bar class="bar-stable">
    <h1 class="title">Your App Title</h1>
    <atlas-progress class="atlas-progress-positive"></atlas-progress>
</ion-header-bar>

Custom Color

If you want to use a custom color, instead of the Ionic class color scheme, you can do so. Just simply extend the directive with an color attribute:

<atlas-progress color="'#7658f6'"></atlas-progress>

If you at a color attribute and has specified a color with the Ionic class scheme, the color attribute will be used. The Ionic class color scheme will be ignored.

If the color attribute is undefined the specified Ionic class scheme will be used.

Change speed

The speed of the animation has three states:

  1. slow
  2. default
  3. fast

You able to change the speed using the speed attribute:

<atlas-progress speed="2" class="atlas-progress-positive"></atlas-progress>

If no speed attribute is added, the default speed will be used.