解决dataV库中滚动列表抖动的bug

最近在一个大屏项目组使用到了dataV库中的滚动列表,发现在滚动过程中第一行会抖动

加上

::v-deep .row-item {

height: 10% !important;

line-height: 0 !important; //

font-size: 1vh !important;

overflow: auto !important;

margin: 0 !important;

color: #75deef !important;

}

这个样式就可以了,

猜测是表头的行高和row的行高不一样,每次滚动到表头的时候设置的行高冲突了。

 

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-06 07:26:08       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-06 07:26:08       100 阅读
  3. 在Django里面运行非项目文件

    2024-06-06 07:26:08       82 阅读
  4. Python语言-面向对象

    2024-06-06 07:26:08       91 阅读

热门阅读

  1. Chatgpt-4o:人工智能领域的革新与未来展望

    2024-06-06 07:26:08       34 阅读
  2. 提交一个Bug需要哪些信息?

    2024-06-06 07:26:08       26 阅读
  3. PSOPT在Ubuntu22.04下的安装

    2024-06-06 07:26:08       29 阅读
  4. flask项目结构心得

    2024-06-06 07:26:08       24 阅读
  5. #职场发展#其他

    2024-06-06 07:26:08       27 阅读
  6. git命令

    2024-06-06 07:26:08       34 阅读
  7. 分布式搜索引擎ElasticSearch学习笔记

    2024-06-06 07:26:08       22 阅读
  8. 数据流图要点和难点实际应用

    2024-06-06 07:26:08       26 阅读
  9. Python函数式编程

    2024-06-06 07:26:08       29 阅读