jscottsmith / react-scroll-parallax

🔮 React hooks and components to create parallax scroll effects for banners, images or any other DOM elements.

Home Page:https://react-scroll-parallax.damnthat.tv/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

(Support) ParallaxBanner obscuring content below it

jcxldn opened this issue · comments

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

@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

Ah, okay.

Thank you very much!

- James