最大的内容绘画是一张大盖茨比背景图像,而且非常慢

Largest contentful paint is one big gatsby-background-image and very slow

对于那些在这个问题上磕磕绊绊想知道如何提高他们的 Lighthouse 分数的人,我发布了一个 answer on this topic on another question,其中包含许多一般性提示。


我是 运行 PageSpeed 洞察力,我最大的问题是最大的内容绘制,大约需要 8-10 秒。下面他们列出了我最大的内容绘画元素

Largest Contentful Paint element 1 element found
This is the largest contentful element painted within the viewport. Learn More
Element

This is the a paragraph that appears above here    
<section class="mainBgImage gbi--716926567-eDXcajFRMpQ2F1s7wNgLk1" style="background-position:center top;background-repeat:no-repeat;background-size:cover;position:relative;opacity:0.99" role="img">

这个元素是一张横跨我整个网站背景的图片。它最初是一个 1.2 MB 的 png,我使用 ...GatsbyImageSharpFluid_withWebp_noBase64 加载,最大宽度为 1950。

这是我如何渲染它的代码

    import BackgroundImage from 'gatsby-background-image';

    ...

      <BackgroundImage
        Tag="section"
        role="img"
        className='mainBgImage'
        fadeIn={false}
        // style={{objectFit: 'contain',  width: '100%' }}
        style={{
          opacity: 0.03,
          backgroundPosition: "center top",
          
        }}
        fluid={wheatImgProps}
      >
          {children}
      </BackgroundImage>

这是静态 graphql 查询

    const data = useStaticQuery(graphql
        `query LayoutQuery {
          wheatImg: file(
            extension: {regex: "/(jpg)|(jpeg)|(png)/"},
            name: {eq: "wheat-background"}
          ) {
            childImageSharp {
              fluid(maxWidth: 1950) {
                ...GatsbyImageSharpFluid_withWebp_noBase64
              }
            }
          }
        }
        `
      )

原来解决方案是将我的背景图片分成 2 个。一张用于“首屏”(无需滚动即可看到),另一张用于“非首屏”。我还发现 image compressor website 是减少文件大小的最有帮助和最直接的方法之一。

然后我创建了一个绝对定位的 div 看起来像

const BGImg = ({img, className}:{img:FluidObject, className?:string}) => (
    <Img
        Tag="section"
        className={className}
        durationFadeIn={250}
          
        style={{
            opacity: 0.03,
            minWidth:"100%",
            objectFit: 'cover',
            objectPosition: "center top",
        }}
        fluid={img}
    />
)

...

<div id='layout'>
    <div id='bgImageContainer'>
        <BGImg img={above_the_fold_bg} />
        <BGImg img={below_the_fold_bg}  />
    </div>
...

样式看起来像

#bgImageContainer{
    position: absolute;
    z-index: -999;
    min-width:100%;
    min-height:100%;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
}

#layout{
    overflow: hidden;
    position: relative;
}