记录uniapp 滚动后溢出显示空白的办法

写了一个横向滚动,超出可视区域图片空白,上下滚动页面可视区域图片显示,不可见区域滚动出来变成空白

错误css如下

css 复制代码
   width: 678rpx;
  height: 264rpx;
    background: #ffffff;
    border-radius: 16rpx;
    margin: 64rpx 18rpx 10rpx 18rpx;
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;

在UniApp中实现横向滚动并且溢出显示空白,可以使用scroll-view组件。

html 复制代码
<template>
  <view class="container">
    <scroll-view class="scroll-view" scroll-x>
      <view class="item" v-for="(item, index) in items" :key="index">
        {{ item }}
      </view>
    </scroll-view>
  </view>
</template>

<style>
.container {
  width: 100%;
  height: 200px;
  overflow-x: scroll;
}

.scroll-view {
  white-space: nowrap;
}

.item {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: #ccc;
  margin-right: 10px;
}
</style>

<script>
export default {
  data() {
    return {
      items: ['Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5']
    };
  }
};
</script>
相关推荐
程序员小寒1 天前
前端高频面试题之CSS篇(一)
前端·css·面试·css3
fruge1 天前
低版本浏览器兼容方案:IE11 适配 ES6 语法与 CSS 新特性
前端·css·es6
han_2 天前
前端高频面试题之CSS篇(一)
前端·css·面试
不会玩电脑的Xin.2 天前
HTML + CSS
前端·css·html
2501_915106322 天前
iOS App 测试工具全景分析,构建从开发调试到线上监控的多阶段工具链体系
android·测试工具·ios·小程序·uni-app·iphone·webview
dchen772 天前
uniapp实现上拉刷新和下拉刷新的两种方式
uni-app
FinelyYang2 天前
uniapp+unipush2.0+WebRTC实现h5一对一视频通话
uni-app·音视频·webrtc
天蓝色的鱼鱼2 天前
mescroll老用户亲测z-paging:这些功能让我果断切换!
前端·uni-app
anyup2 天前
🔥100+ 天,已全面支持鸿蒙!uView Pro 近期更新盘点及未来计划
前端·uni-app·harmonyos
悟能不能悟3 天前
<style scoped>vue中怎么引用css文件
css·vue.js