0.1.5 • Published 1 year ago

kebs-progress-circle v0.1.5

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

npm version code style: prettier

kebs-progress-circle

kebs-progress-circle is a simple animated progress indicator with percentage value.

Prerequisites

This project requires NodeJS and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.

$ npm -v && node -v
6.4.1
v8.16.0

Table of contents

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Installation

BEFORE YOU INSTALL: please read the prerequisites

To install and set up the library, run:

$ npm install kebs-progress-circle

Usage

app.module.ts

import { CommonModule } from  '@angular/common';
import { NgModule } from  '@angular/core';
import { AppComponent } from  './app.component';
import {KebsProgressCircleModule} from 'kebs-progress-circle'

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        CommonModule,
        KebsProgressCircleModule
    ],
    providers: [],
})

export  class  AppModule { }

app.component.html

<kebs-progress-circle 
[percentageValue]="70" [progressSpeed]="50" [loadBarColor]="#45546E" [loadBarBgColor]="#DADCE2">
</kebs-progress-circle>

Inputs

PropertyTypeDescription
percentageValuenumberPercentage value
progressSpeednumberProgress bar speed (Indirectly propotional)
loadBarColorstringBar color
loadBarBgColorstringBar background color

Built With

  • Angular
  • VS code
  • Love
0.1.5

1 year ago

0.1.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.4

1 year ago

0.0.1

2 years ago