3

我想在加载图像时显示骨架。我试图在 NextJS 提供onLoad的新Image组件中传递一个道具,但该函数在图像加载之前触发。

这是我的代码

const [loaded, setLoaded] = useState(false);

<Image
  src={src}
  alt={""}
  className={styles.image_tag}
  onLoad={(e) => setLoaded(true)}
  style={{ opacity: loaded ? "1" : "0" }}
  layout={"fill"}
/>

{!loaded && (
  <Skeleton
    className={styles.skeleton}
    variant={"rect"}
    animation={"wave"}
  />
)}
4

2 回答 2

2

您可以像这样使用 onLoad 道具:

引用自https://github.com/vercel/next.js/discussions/20155

const [isImageReady, setIsImageReady] = useState(false);

const onLoadCallBack = (e)=>{
   setIsImageReady(true)
   typeof onLoad === "function" && onLoad(e)
}

return(
  <div>
   {!isImageReady && 'loading image...'}
   <Image 
     onLoad={onLoadCallBack} 
     src={'/'+image} 
     alt={title} 
     width={260}  
     height={160} />
  </div>
)

*******************************更新****************** ***********

Nextjs 现在提供了一个placeholerblurDataURL 属性,您可以使用它在加载主图像之前显示图像占位符。

一个例子


<Image
 className="image"
 src={image.src}
 alt={image.alt}
 layout="fill"
 objectFit="cover"
 objectPosition="top center"
 placeholder="blur"
 blurDataURL="/images/blur.jpg"
/>

于 2021-04-16T01:19:12.663 回答
1

从 11.1 开始,您可以使用 onLoadingComplete

一个回调函数,在图像完全加载并且占位符已被删除后调用。

https://nextjs.org/docs/api-reference/next/image#onloadingcomplete

于 2021-08-14T13:47:50.723 回答