文件名称:react-smart-scroll:在React中高效渲染长列表
文件大小:173KB
文件格式:ZIP
更新时间:2024-06-03 07:05:32
react scrolling scroll scrollable virtualized
React智能滚动 ReactSmartScroll是一种轻巧,高性能,易于使用的方法,可在React中高效地呈现长列表。 它仅呈现可见的行,上方和下方有一些缓冲区行。 (最少)ReactSmartScroll是非操作的,且配置最少。 它自动支持可变高度的行,即使它们在运行时由于调整大小,扩展等而改变高度时也是如此。 安装 // npm npm i -S react-smart-scroll // yarn yarn add react-smart-scroll 超级简单的样本: import ReactSmartScroll from 'react-smart-scroll' ; const data = [ { id : 1 , text : 'Hello' } , { id : 2 , text : 'World' } , ] ; const TestRow =
【文件预览】:
react-smart-scroll-master
----.prettierignore(134B)
----.gitignore(88B)
----README.md(6KB)
----.prettierrc(104B)
----tests()
--------index-test.js(478B)
--------.eslintrc(37B)
----.eslintrc(4KB)
----package.json(2KB)
----nwb.config.js(98B)
----CONTRIBUTING.md(744B)
----src()
--------ReactSmartScroll()
--------index.js(85B)
--------hooks()
----jsconfig.json(84B)
----.travis.yml(296B)
----.editorconfig(400B)
----package-lock.json(634KB)
----demo()
--------src()