diff --git a/src/components/carousel/nz-carousel.component.ts b/src/components/carousel/nz-carousel.component.ts index 012e2e42e6..cc446d8edb 100755 --- a/src/components/carousel/nz-carousel.component.ts +++ b/src/components/carousel/nz-carousel.component.ts @@ -58,7 +58,9 @@ export class NzCarouselComponent implements AfterViewInit, OnDestroy { setActive(content, i) { this.clearInterval(); - this.createInterval(); + if (this.nzAutoPlay) { + this.createInterval(); + } this.activeIndex = i; if (this.nzEffect !== 'fade') { if (!this.nzVertical) {