ngx-horizontal-timeline
v0.0.6
Published
Módulo para criação de Timeline Horizontal responsiva
Downloads
358
Maintainers
Readme
Installation
$ npm i ngx-horizontal-timeline
Usage
Import
import { NgxHorizontalTimelineModule } from 'ngx-horizontal-timeline';
@NgModule({
declarations: [
AppComponent
],
imports: [
NgxHorizontalTimelineModule
...
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Component
...
items: TimelineItem[];
ngOnInit() {
this.items.push({
label: 'Test 1',
icon: 'glyphicon glyphicon-adjust',
active: true,
title: 'Example 1',
color: '16a085',
command() {
console.log('Action 1');
}
});
this.items.push({
label: 'Test 2',
icon: 'fa fa-plus',
title: 'Example 2',
color: '2980b9',
command() {
console.log('Action 2');
}
});
}
Template
<ngx-htl-horizontal-timeline [(items)]="items"></ngx-htl-horizontal-timeline>