jscottsmith / react-scroll-parallax

🔮 React hooks and components to create parallax scroll effects for banners, images or any other DOM elements.
https://react-scroll-parallax.damnthat.tv/
MIT License
2.86k stars 158 forks source link

(Support) ParallaxBanner obscuring content below it #171

Closed jcxldn closed 1 year ago

jcxldn commented 1 year ago

Support

Hi, I'm trying to use a ParallaxBanner but I find that as I scroll down, it obscures text/content below it. Here's a CodeSandbox that has the same issue: https://codesandbox.io/s/react-scroll-parallax-demo-qbzmb1

Thank you,

- James

jscottsmith commented 1 year ago

@Prouser123 I think you accidentally wrapped the banner in a <Parallax> component. The <ParallaxBanner> handles this internally so just remove it and everything should be good.

You did this:

<Parallax translateY={[-20, 20]}>
  <ParallaxBanner style={{ aspectRatio: "2 / 1" }}>
    <ParallaxBannerLayer
      speed={-20}
      image="image.jpg"
    />
  </ParallaxBanner>
</Parallax>

Instead do this:

<ParallaxBanner style={{ aspectRatio: "2 / 1" }}>
  <ParallaxBannerLayer
    speed={-20}
    image="image.jpg"
  />
</ParallaxBanner>

Updated Codesandbox: https://codesandbox.io/s/react-scroll-parallax-demo-forked-lodpei?file=/src/App.tsx

jcxldn commented 1 year ago

Ah, okay.

Thank you very much!

- James