美文网首页
uniapp scroll-view实现横向滚动

uniapp scroll-view实现横向滚动

作者: 迷失的信徒 | 来源:发表于2023-11-27 17:51 被阅读0次
    1、实现效果
    图片.png
    2、代码实现

    template部分

            <scroll-view class="scroll-view" scroll-x="true">
                <view class="item" v-for="(item,index) in list" :key="index">
                    这个位置是item 内容位置
                </view>
            </scroll-view>
    

    script部分

    <script>
        export default {
            data() {
                return {
                    list: [1, 2, 3, 4, 5]
                }
            }
        }
    </script>
    

    style部分

    <style lang="scss">
        .scroll-view {
            white-space: nowrap;
            width: 100%;
    
            .item {
                width: 50%;
                height: 200rpx;
                background-color: yellowgreen;
                display: inline-flex;
                margin-right: 20rpx;
                align-items: center;
                justify-content: center;
            }
        }
    </style>
    
    3、核心实现

    1、scroll-view必须设置为:white-space: nowrap;
    2、item布局最外层,必须为行内布局,例如:inline-blockinline-flex

    相关文章

      网友评论

          本文标题:uniapp scroll-view实现横向滚动

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