Base On ng2-Odometer, remove other theme except default to keep mini size
npm install angular-odometer-miniOdometer for Angular2 that wraps HubSpot's Odometer http://github.hubspot.com/odometer/docs/welcome/
```
npm install ng2-odometer --save
- Setup
- Usage
- Configuration
- Demo
First you need to install the npm module:
`sh`
npm install ng2-odometer --save
Then add the Ng2OdometerModule to the imports array of your application module.
`typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { Ng2OdometerModule } from 'ng2-odometer'; // <-- import the module
import { AppComponent} from './app.component';
@NgModule({
imports: [
BrowserModule,
Ng2OdometerModule.forRoot() // <-- include it in your app module
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {
//
}
`
Use the component to create an odometer. The number and observable are required attributes. number
The represents the limit at which the odometer will travel. The observable is an Observable which will be used as a trigger for the odometer.
`js
@Component({
selector: 'main-element',
template:
...
...
})
export class MainElementComponent {
public observable: Observable
private observer: Observer
constructor() {
this.observable = new Observable
// Trigger odometer after 2s
setTimeout(() => this.observer.next(true), 2000);
}
}
`
The component accepts either a [config]="{ ... }" attribute with an object with all the configurable attribues or independent attributes for each configuration.
| Option | Type | Default | Description |
| --------------| --------- | ----------- |-------------- |
| animation | string | 'slide' | Animation effect type. format
Options: 'slide', 'count'
| | string | '(,ddd)' | Format to apply on the numbers. theme
Format - Example:
(,ddd) - 12,345,678
(,ddd).dd - 12,345,678.09
(.ddd),dd - 12.345.678,09
( ddd),dd - 12 345 678,09
d - 12345678
| | string | 'default' | The desired theme. value
Options: 'default', 'minima', 'digital', 'car', 'plaza', 'slot-machine', 'train-station'
| | number | 0 | Initial value of the odometer
`js
@Component({
selector: 'main-element',
template:
...
[observable]="observable"
[config]="config">
[observable]="observable"
[config]="{ animation: 'count', format: 'd', theme: 'car', value: 50 }">
[observable]="observable"
[animation]="'count'"
[format]="'d'"
[theme]="'car'"
[value]="0">
...
})
export class MainElementComponent {
public config = {
animation: 'count',
format: 'd',
theme: 'car',
value: 50
}
...
}
`
If you add both, the [config] and any independent configuration, the independent config will overwrite the [config] object.
The demo subfolder contains a project created with angular-cli that has been adapted to showcase the functionality of ng2-odometer.
To execute the code follow this steps:
`
// Go the the demo folder
cd demo
// Install dependencies
npm install
// Run the server
ng serve
``
Then go to http://localhost:4200 to check the demo running.
* Add tests to the library and demo
* Add new themes
* Create a Directive also