angular-count-to
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

angular-count-to

A simple count-to directive that counts from a number to a number.

Requirements

  • Angular >= 4.0.0

Installation

npm install angular-count-to --save

In your app.module.ts:

import { CountToModule } from 'angular-count-to';
@NgModule({
    ...
    imports: [CountToModule]
    ...
});

Background

Example

// Controller
count = {
    countTo: 100,
    from: 0,
    duration: 1
};

// Template
<span [CountTo]="count.countTo" [from]="count.from" [duration]="count.duration"></span>

// Write directly to the directive
<span CountTo="100" from="0" duration="10"></span>
Value Required Defaults to
CountTo yes N/a
from no 0
duration no 4

TODOS

  • Write test scripts

License

MIT

Dependencies (0)

    Dev Dependencies (35)

    Package Sidebar

    Install

    npm i angular-count-to

    Weekly Downloads

    1,386

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • austinthedeveloper