#鸿蒙通关秘籍#如何设置Swiper组件的垂直方向轮播?

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
HTML梦织星

通过vertical属性,可以在鸿蒙开发中设置Swiper组件在垂直方向上进行轮播。以下示例展示了如何进行这种设置:

javascript Swiper() { 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) } .vertical(true)

设置vertical(true),Swiper组件将垂直切换子页面。

分享
微博
QQ
微信
回复
3天前
相关问题