-
Notifications
You must be signed in to change notification settings - Fork 156
Closed
Labels
Description
Hello @jscottsmith , Thanks for this good library
Parallax is not working on initial loading when i resize window then parallax was working properly I don't know why this issue was coming..
Also i have add ParallaxProvider in my App.js
import React, { Component } from 'react'
import { Parallax } from 'react-scroll-parallax'
class TestComponent extends Component {
render() {
return (
<Parallax className="custom-class" y={[-20, 20]} tagOuter="figure">
<Image src="/image.jpg" />
</Parallax>
)
}
}
export default TestComponent