import {Component, Input} from '@angular/core'; @Component({ selector: 'gif-slider', template: `
` }) export class GifSliderComponent { @Input() gifs: {"gif": string, "header": string, "text"}[] = []; @Input() link = false; @Input() route = null; @Input() linkTitle = null; @Input() gifRight = false; @Input() velocity = 0; @Input() autoplay = true; @Input() autoplayInterval = 4000; @Input() pauseOnHover = false; @Input() center = true; }