Skip to content

Instantly share code, notes, and snippets.

@ArunMichaelDsouza
Last active April 25, 2019 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArunMichaelDsouza/9ac6e95cee78254ef21d2ac2b7784404 to your computer and use it in GitHub Desktop.
Save ArunMichaelDsouza/9ac6e95cee78254ef21d2ac2b7784404 to your computer and use it in GitHub Desktop.
react-image-appear demo
import React from 'react';
import ReactImageAppear from 'react-image-appear';
class MyComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<ReactImageAppear
src="https://newevolutiondesigns.com/images/freebies/tropical-beach-background-8.jpg"
animation="zoomIn"
animationDuration="1s"
/>
);
}
}
export default MyComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment