2020-09-03

tech2024-10-05  14

小程序中swiper与image的使用

/*wxml*/ <swiper> <swiper-item><image src="..." mode="widthFix"/> </swiper-item> <swiper-item><image src="..." mode="widthFix"/> </swiper-item> <swiper-item><image src="..." mode="widthFix"/> </swiper-item> </swiper> /*swiper默认宽高100%,150px,image:100%,240px*/ /*wxss*/ swiper{ width:100%; height: calc(750rpx*图片高度/图片宽度) } image{ width: 100%; height//无需设置,widthFix已经设置高度自适应 }
最新回复(0)