Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,24 @@ const MyComponent = () => (
```


### Example controlling element transition

There are two primary classes you an use to control the component `LazyLoad` and `is-visible`


```css
/* Example of how to fade our content in */

.LazyLoad {
opacity: 0;
transition: all 1s ease-in-out;
}

.is-visible {
opacity: 1;
}
```

## Props

#### offset
Expand Down