Ngx-Bootstrap - Karussell
ngx-bootstrap Karussell wird verwendet, um eine Diashow von Bildern oder Text zu erstellen
Karussellkomponente
Basiselement zum Erstellen eines Karussells.
Wähler
carousel
Eingänge
activeSlide - Nummer, Index der aktuell angezeigten Folie (gestartet für 0)
indicatorsByChunk - Boolescher Wert, Standard: false
interval- Anzahl, Verzögerung des Artikelwechsels in Millisekunden. Wenn false, fährt das Karussell nicht automatisch.
isAnimated- boolean, Animation ein- / ausschalten. Die Animation funktioniert nicht für ein Multilisten-Karussell. Standard: false
itemsPerSlide - Nummer, Standard: 1
noPause - Boolescher Wert
noWrap - Boolescher Wert
pauseOnFocus - Boolescher Wert
showIndicators - Boolescher Wert
singleSlideOffset - Boolescher Wert
startFromIndex - Nummer, Standard: 0
Ausgänge
activeSlideChange- Wird ausgegeben, wenn die aktive Folie geändert wurde. Teil der bidirektional bindbaren Eigenschaft [(activeSlide)]
slideRangeChange - Wird ausgegeben, wenn aktive Folien im Multilist-Modus geändert wurden
SlideComponent
Wähler
slide
Eingänge
active - boolean, Ist die aktuelle Folie aktiv?
Beispiel
Da wir das Karussell verwenden werden, müssen wir app.module.ts aktualisieren, das im Kapitel ngx-bootstrap Buttons verwendet wirdCarouselModule.
Aktualisieren Sie app.module.ts, um das CarouselModule zu verwenden.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule
],
providers: [AlertConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
Aktualisieren Sie test.component.html, um das Karussell zu verwenden.
test.component.html
<div style="width: 500px; height: 500px;">
<carousel [noWrap]="noWrapSlides" [showIndicators]="showIndicator">
<slide *ngFor="let slide of slides; let index=index">
<img [src]="slide.image" alt="image slide" style="display: block; width: 100%;">
<div class="carousel-caption">
<h4>Slide {{index}}</h4>
<p>{{slide.text}}</p>
</div>
</slide>
</carousel>
<br/>
<div>
<div class="checkbox">
<label><input type="checkbox" [(ngModel)]="noWrapSlides">Disable Slide Looping</label>
<label><input type="checkbox" [(ngModel)]="showIndicator">Enable Indicator</label>
</div>
</div>
</div>
Aktualisieren Sie test.component.ts für entsprechende Variablen und Methoden.
test.component.ts
import { Component, OnInit } from '@angular/core';
import { CarouselConfig } from 'ngx-bootstrap/carousel';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
providers: [
{ provide: CarouselConfig, useValue: { interval: 1500, noPause: false, showIndicators: true } }
],
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
slides = [
{image: 'assets/images/nature/1.jpg', text: 'First'},
{image: 'assets/images/nature/2.jpg',text: 'Second'},
{image: 'assets/images/nature/3.jpg',text: 'Third'}
];
noWrapSlides = false;
showIndicator = true;
constructor() { }
ngOnInit(): void {
}
}
Bauen und dienen
Führen Sie den folgenden Befehl aus, um den Winkelserver zu starten.
ng serve
Sobald der Server betriebsbereit ist. Öffnen Sie http: // localhost: 4200 und überprüfen Sie die folgende Ausgabe.