Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannchb-pro authored Mar 20, 2021
1 parent ecb48e4 commit 88f36d1
Show file tree
Hide file tree
Showing 6 changed files with 716 additions and 89 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Changelog started on 1.1.6 because the first version was in beta
- BUGS correction
- Better animations
- `lazy-animation-pointer` can now delete the skeleton animation of an element
- skeletons loader are fixed on phone

## 1.1.8
- BUGS correction
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Create lazy image, iframe, video... Make custom animation on lazy and not lazy e
- BUGS correction
- Better animations
- `lazy-animation-pointer` can now delete the skeleton animation of an element
- skeletons loader are fixed on phone

## 📚 Documentation & Demo
---
Expand Down Expand Up @@ -127,4 +126,18 @@ rotate
blur
flip
flip-up
```

### Create your animation
```css
.my-animation-name{
opacity: 0;
animation: animation-name 1s forwards;
}

@keyframes animation-name{
100%{
opacity: 1;
}
}
```
2 changes: 1 addition & 1 deletion dist/lazy-attr-animation.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 88f36d1

Please sign in to comment.