美文网首页
uni-app swiper的使用注意

uni-app swiper的使用注意

作者: hao_developer | 来源:发表于2021-04-20 14:00 被阅读0次
<swiper class="swiper-content" interval="5000" autoplay="true" 
    indicator-dots="true" circular="true" @change="bannerChange">
    <swiper-item v-for="(item, index) in slideImgList" :key="index">
        <view class="img-content" @tap="bannerClick(index)">
            <image class="swiper-img" :src="item.img" mode="aspectFill"></image>
            <view>¥23.00</view>
        </view>
    </swiper-item>
</swiper>

swiper需要指定高度height:140px
image需要制定宽高 width:100% height:100%

相关文章

网友评论

      本文标题:uni-app swiper的使用注意

      本文链接:https://www.haomeiwen.com/subject/wqknlltx.html