簡體   English   中英

React-Dropzone:我不能將縮略圖放在dropzone內

[英]React-Dropzone: I can't put my thumbnail image inside dropzone

我圖像的縮略圖預覽在我的拖放區之外(顯示在下面)。 如何使它顯示在放置區/而不是放置區中?

這是我的代碼:

   <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%'
}

我將其放在<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>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM