美文网首页
uni-app scroll-view横向滚动注意

uni-app scroll-view横向滚动注意

作者: hao_developer | 来源:发表于2021-04-20 14:04 被阅读0次
image.png
<scroll-view class="xsms-scroll" scroll-x="true">
    <view v-for="(item, index) in homeSeckill.seckillList" class="xsms-item">
        <image :src="item.productMainImgUrl"></image>
        <view>¥{{item.seckillPrice}}</view>
    </view>
</scroll-view>
.xsms-scroll{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.xsms-item{
    display: inline-block;
    text-align: center;
    margin-left: 10px;
    margin-top: 9px;
    color: #EB2C3E;
    font-size: 14px;
    font-weight: 600;
}

scroll-view重要的三个属性scroll-x="true";overflow: hidden;white-space: nowrap;
scroll-view中的item的主要属性display: inline-block;

相关文章

网友评论

      本文标题:uni-app scroll-view横向滚动注意

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