Ngx-Bootstrap - ม้าหมุน
ngx-bootstrap Carousel ใช้เพื่อสร้างสไลด์โชว์ของรูปภาพหรือข้อความ
CarouselComponent
องค์ประกอบพื้นฐานเพื่อสร้างภาพหมุน
ตัวเลือก
carousel
อินพุต
activeSlide - ตัวเลขดัชนีของสไลด์ที่แสดงในปัจจุบัน (เริ่มต้นสำหรับ 0)
indicatorsByChunk - บูลีนค่าเริ่มต้น: เท็จ
interval- จำนวนความล่าช้าของการหมุนรายการเป็นมิลลิวินาที หากเป็นเท็จภาพหมุนจะไม่วนโดยอัตโนมัติ
isAnimated- บูลีนเปิด / ปิดภาพเคลื่อนไหว ภาพเคลื่อนไหวใช้ไม่ได้กับภาพหมุนหลายรายการค่าเริ่มต้น: เท็จ
itemsPerSlide - ตัวเลขค่าเริ่มต้น: 1
noPause - บูลีน
noWrap - บูลีน
pauseOnFocus - บูลีน
showIndicators - บูลีน
singleSlideOffset - บูลีน
startFromIndex - ตัวเลขค่าเริ่มต้น: 0
เอาท์พุต
activeSlideChange- จะแสดงเมื่อมีการเปลี่ยนแปลงสไลด์ที่ใช้งานอยู่ เป็นส่วนหนึ่งของคุณสมบัติ [(activeSlide)] แบบสองทางที่ผูกได้
slideRangeChange - จะแสดงเมื่อสไลด์ที่ใช้งานอยู่ถูกเปลี่ยนในโหมดหลายรายการ
SlideComponent
ตัวเลือก
slide
อินพุต
active - บูลีนสไลด์ปัจจุบันใช้งานอยู่
ตัวอย่าง
ในขณะที่เรากำลังจะใช้ carousel เราจะต้องอัปเดต app.module.ts ที่ใช้ในบท ngx-bootstrap Buttonsเพื่อใช้CarouselModule.
อัปเดต app.module.ts เพื่อใช้ CarouselModule
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 { }
อัปเดต test.component.html เพื่อใช้ Carousel
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>
อัปเดต test.component.ts สำหรับตัวแปรและวิธีการที่เกี่ยวข้อง
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 {
}
}
สร้างและให้บริการ
รันคำสั่งต่อไปนี้เพื่อเริ่มเซิร์ฟเวอร์เชิงมุม
ng serve
เมื่อเซิร์ฟเวอร์เริ่มทำงาน เปิด http: // localhost: 4200 และตรวจสอบผลลัพธ์ต่อไปนี้