我图像的缩略图预览在我的拖放区之外(显示在下面)。如何使它显示在放置区/而不是放置区中?
这是我的代码:
<ReactDropzone
accept="image/*"
onDrop={this.onDrop}
style={{"width" : "100%", "height" : "25vw", "background" : "lightGrey",}}
>
<Typography
color='inherit'
align='center'
syle={{"verticalAlign" : "center"}}
marginTop='20'
>
<br/><br/><br/>
<svg xmlns="http://www.w3.org/2000/svg" justifyContent="center" width="30%" height="30%" viewBox="0 0 24 24" color="white"><path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"/></svg>
<div>Upload or Drop photo here</div>
</Typography>
</ReactDropzone>
使用ReactDropzone配置:
dropzone: {
padding: theme.spacing.unit * 0,
img: {
borderRadius: '10px',
verticalAlign: 'bottom',
width: '10',
maxHeight: '95%'
}
答案 0 :(得分:0)
我将其放在<ReactDropzone>
组件中:
<Dropzone
className = 'defaultDropzone'
accept={acceptedFileTypes}
onDrop={this.handleOnDrop}
maxSize={imageMaxSize}
>
{files.length > 0 ? <img src = {files[0].preview} /> :
<div className = "dropzone">
<i className= 'fa fa-cloud-upload'/>
<span> Drop file or click here to upload photo </span>
</div>
}
</Dropzone>