簡體   English   中英

在 React 網格中獲取圖像高度

[英]Get image height in React grid

我在 React 中制作磚石網格畫廊,在加載后和使用網格調整大小之前我無法獲得圖像高度。 我在img上有onLoad處理程序,但我只得到了應該是原始的已經調整大小的圖像高度,用它來計算行跨度的數量。 我知道這可能是純粹的 css 問題,但我不知道如何解決。

這是我的useEffect

  useEffect(() => {
    if (imageRef.current && !loading) {
      const height = imageRef.current.clientHeight;
      console.log('height', height);
      const spansCount = Math.ceil(height / 10 + 1);
      setSpansCount(spansCount);
    }
  }, [imageRef.current, loading]);

這是我的render

 return (
    <div
      {...rest}
      className={styles.gallery__item}
      style={{ gridRowEnd: `span ${spansCount}` }}
    >
      <img
        src={image.previewURL}
        ref={imageRef}
        className={styles.gallery__img}
        alt={image.tags}
        onLoad={handleLoad}
      />
      <Placeholder
        ref={loaderRef}
        style={loading ? { display: 'block' } : { display: 'none' }}
      />
    </div>

這是我的非工作Codesandbox

這里是使用react-load-image package工作Codesandbox ,但我不確定為什么這是有效的,而第一個無效。

我只需要在圖像上更改此 css:

.gallery__img {
  width: 100%;
  height: auto; // not 100%
}

暫無
暫無

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

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