微信小程序 swiper 组件坑
Posted whnba
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 swiper 组件坑相关的知识,希望对你有一定的参考价值。
swiper 组件高度被限制为150px了,所以内容无法撑开。
解决办法
给这组件重新设置个高度,然后在把里面的图片设置为自动适应容器大小。图片模式设置为 宽度不变 自动适应高度
<swiper class="test" .....> <swiper-item> <image mode=‘widthFix‘ ...... /> </swiper-item> </swiper> <style>
.text{
height:200px;
}
image{ width:100%; height:auto; } </style>
以上是关于微信小程序 swiper 组件坑的主要内容,如果未能解决你的问题,请参考以下文章