NetanelBasal
9/11/2017 - 7:24 PM

ngcarousel6.ts

@Component({
  selector: 'carousel',
  template: `
    <section class="carousel-wrapper" [ngStyle]="carouselWrapperStyle">
      ...
    </section>

    <div *ngIf="showControls">
      <button (click)="next()">Next</button>
      <button (click)="prev()">Previous</button>
    </div>
  `,
  styles: [`...`]
})
export class CarouselComponent implements AfterViewInit {
 }