W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Swiper組件提供滑動(dòng)輪播顯示的能力。Swiper本身是一個(gè)容器組件,當(dāng)設(shè)置了多個(gè)子組件后,可以對(duì)這些子組件進(jìn)行輪播顯示。通常,在一些應(yīng)用首頁(yè)顯示推薦的內(nèi)容時(shí),需要用到輪播顯示的能力。
Swiper作為一個(gè)容器組件,在自身尺寸屬性未被設(shè)置時(shí),會(huì)自動(dòng)根據(jù)子組件的大小設(shè)置自身的尺寸。如果開(kāi)發(fā)者對(duì)Swiper組件設(shè)置了固定的尺寸,則在輪播顯示過(guò)程中均以該尺寸生效;否則,在輪播過(guò)程中,會(huì)根據(jù)子組件的大小自動(dòng)調(diào)整自身的尺寸。
通過(guò)loop屬性控制是否循環(huán)播放,該屬性默認(rèn)值為true。
當(dāng)loop為true時(shí),在顯示第一頁(yè)或最后一頁(yè)時(shí),可以繼續(xù)往前切換到前一頁(yè)或者往后切換到后一頁(yè)。如果loop為false,則在第一頁(yè)或最后一頁(yè)時(shí),無(wú)法繼續(xù)向前或者向后切換頁(yè)面。
- ...
- private swiperController: SwiperController = new SwiperController()
- ...
- Swiper(this.swiperController) {
- Text("0")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Blue)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .loop(true)
- Swiper(this.swiperController) {
- Text("0")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Blue)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .loop(false)
Swiper通過(guò)設(shè)置autoPlay屬性,控制是否自動(dòng)輪播子組件。該屬性默認(rèn)值為false。
autoPlay為true時(shí),會(huì)自動(dòng)切換播放子組件,子組件與子組件之間的播放間隔通過(guò)interval屬性設(shè)置。interval屬性默認(rèn)值為3000,單位毫秒。
- Swiper(this.swiperController) {
- Text("0")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Pink)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .loop(true)
- .autoPlay(true)
- .interval(1000)
Swiper提供了默認(rèn)的導(dǎo)航點(diǎn)樣式,導(dǎo)航點(diǎn)默認(rèn)顯示在Swiper下方居中位置,開(kāi)發(fā)者也可以通過(guò)indicatorStyle屬性自定義導(dǎo)航點(diǎn)的位置和樣式。
通過(guò)indicatorStyle屬性,開(kāi)發(fā)者可以設(shè)置導(dǎo)航點(diǎn)相對(duì)于Swiper組件上下左右四個(gè)方位的位置,同時(shí)也可以設(shè)置每個(gè)導(dǎo)航點(diǎn)的尺寸、顏色、蒙層和被選中導(dǎo)航點(diǎn)的顏色。
- Swiper(this.swiperController) {
- Text("0")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Pink)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- Swiper(this.swiperController) {
- Text("0")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width('90%')
- .height('100%')
- .backgroundColor(Color.Pink)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .indicatorStyle({
- size: 30,
- left: 0,
- color: Color.Red
- })
Swiper支持三種頁(yè)面切換方式:手指滑動(dòng)、點(diǎn)擊導(dǎo)航點(diǎn)和通過(guò)控制器。
- @Entry
- @Component
- struct SwiperDemo {
- private swiperController: SwiperController = new SwiperController();
- build() {
- Column({ space: 5 }) {
- Swiper(this.swiperController) {
- Text("0")
- .width(250)
- .height(250)
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width(250)
- .height(250)
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width(250)
- .height(250)
- .backgroundColor(Color.Pink)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .indicator(true)
- Row({ space: 12 }) {
- Button('showNext')
- .onClick(() => {
- this.swiperController.showNext(); // 通過(guò)controller切換到后一頁(yè)
- })
- Button('showPrevious')
- .onClick(() => {
- this.swiperController.showPrevious(); // 通過(guò)controller切換到前一頁(yè)
- })
- }.margin(5)
- }.width('100%')
- .margin({ top: 5 })
- }
- }
Swiper支持水平和垂直方向上進(jìn)行輪播,主要通過(guò)vertical屬性控制。
當(dāng)vertical為true時(shí),表示在垂直方向上進(jìn)行輪播;為false時(shí),表示在水平方向上進(jìn)行輪播。vertical默認(rèn)值為false。
- Swiper(this.swiperController) {
- ...
- }
- .indicator(true)
- .vertical(false)
- Swiper(this.swiperController) {
- ...
- }
- .indicator(true)
- .vertical(true)
Swiper支持在一個(gè)頁(yè)面內(nèi)同時(shí)顯示多個(gè)子組件,通過(guò)displayCount屬性設(shè)置。
- Swiper(this.swiperController) {
- Text("0")
- .width(250)
- .height(250)
- .backgroundColor(Color.Gray)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("1")
- .width(250)
- .height(250)
- .backgroundColor(Color.Green)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("2")
- .width(250)
- .height(250)
- .backgroundColor(Color.Pink)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- Text("3")
- .width(250)
- .height(250)
- .backgroundColor(Color.Blue)
- .textAlign(TextAlign.Center)
- .fontSize(30)
- }
- .indicator(true)
- .displayCount(2)
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: