gpt4 book ai didi

javascript - 如何使用 React js 为图像创建虚拟滚动

转载 作者:行者123 更新时间:2023-11-30 14:01:08 24 4
gpt4 key购买 nike

我的要求是什么:我的外部文件夹中有一些图像,我需要导入到组件并显示它,还必须使用 Virtual Scroll 在这里我必须在 div 和1行必须显示5-6张图片

我做了什么:我使用外部文件夹中的上下文使用图像,并在 div 和 5-6 图像中显示 1 行图像,但我面临无法将其设置为虚拟滚动

因为我检查了 react-virtualized 和 react-window 插件,但我不确定我的数据是如何以这种格式使用的

在使用 react-tiny-virtual-list 之后图像开始堆叠

下面是我的代码

class App extends React.Component{

state={
Response:[],

}
importAll(r) {
return r.keys().map(r);
}
componentWillMount() {
let data = this.importAll(require.context('./imageFolder/', false, /\.(png|jpe?g|svg)$/));
this.setState({ Response:data})
}





render(){
return(
<div className="container" id="imagecontainer">
<div className="viewport">
{this.state.Response.map((image, index) => <img key={index} src={image} alt="info"></img> )} }
</div>


</div>
)
}


.container {
padding: 0% 6%;
height: 400px;
}
.viewport {
height: -webkit-fill-available;
width: 100%;
border: 1px solid black;
overflow: scroll;
}

img {
height: 250px;
width: 150px;
padding: 35px;
}


After implementing React-tiny-list
<div id="container">
<div id="viewport">
<VirtualList
height='400px'
width='100%'
itemCount={this.state.items.length}
itemSize={20} // Also supports variable heights (array or function getter)
style={{padding:'20px'}}
renderItem={({index, style}) =>
<div key={index} style={style}>

<img key={index} src={this.state.items[index]} alt="info"></img>
</div>
}
/>
</div>

</div>

最佳答案

您还可以使用 https://github.com/bvaughn/react-virtualized如果您想将其显示为表格,请在其中添加插件,您可以选择列表,也可以选择网格。根据您的要求,我建议使用 'react-virtualized' 中的 Masonry;

下面是展示的例子

import React from 'react';
import {
CellMeasurer,
CellMeasurerCache,
createMasonryCellPositioner,
Masonry
} from 'react-virtualized';

import 'react-virtualized/styles.css';

var images = [];
const columnWidth = 250;
const defaultHeight = 260;
const defaultWidth = columnWidth;

const cache = new CellMeasurerCache({
defaultHeight,
defaultWidth,
fixedWidth: true
})

// Our masonry layout will use 3 columns with a 10px gutter between
const cellPositioner = createMasonryCellPositioner({
cellMeasurerCache: cache,
columnCount: 4,
columnWidth,
spacer: 27
})

function cellRenderer ({ index, key, parent, style }) {
const datum = images[index]

const height = columnWidth || defaultHeight ;

return (
<CellMeasurer
cache={cache}
index={index}
key={key}
parent={parent}
>
<div style={style}>
<img
src={datum}
style={{
height: height,
width: columnWidth,
display: "block"
}}
alt="info"
/>

</div>
</CellMeasurer>
)
}


class Grid extends React.Component{

importAll(r) {
return r.keys().map(r);
}
componentWillMount() {
images = this.importAll(require.context('../imageFolder/', false, /\.(png|jpe?g|svg)$/));
}
render(){
return(
<div id="container">
<div id="viewport">

<Masonry
cellCount={images.length}
cellMeasurerCache={cache}
cellPositioner={cellPositioner}
cellRenderer={cellRenderer}
height={400}
width={1320}

/>
</div>

</div>
)
}
}

export default Grid;

我希望这能解决你的问题

关于javascript - 如何使用 React js 为图像创建虚拟滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56297421/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com