Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions packages/ac-inferno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Below is a list of all available animations (Components).
### Fade

* `FadeIn`
* `FadeOut`
* `FadeInRightBig`
* `FadeInRight`
* `FadeInLeftBig`
Expand Down
2 changes: 2 additions & 0 deletions packages/ac-inferno/animations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
bounceRight,
bounceUp,
fadeIn,
fadeOut,
left,
down,
downBig,
Expand Down Expand Up @@ -82,6 +83,7 @@ const expanseObj = {

const fadeObj = {
FadeIn: hoc('FadeIn', fadeIn),
FadeOut: hoc('FadeOut', fadeOut),
FadeInDown: hoc('FadeInDown', down),
FadeInDownBig: hoc('FadeInDownBig', downBig),
FadeInUp: hoc('FadeInUp', up),
Expand Down
2 changes: 2 additions & 0 deletions packages/ac-inferno/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import Disappear from './containers/Disappear';
const { Bounce, BounceUp, BounceRight, BounceLeft, BounceDown } = bounceObj;
const {
FadeIn,
FadeOut,
FadeInUp,
FadeInRight,
FadeInLeft,
Expand Down Expand Up @@ -61,6 +62,7 @@ export {
BounceLeft,
BounceDown,
FadeIn,
FadeOut,
FadeInUp,
FadeInRight,
FadeInLeft,
Expand Down
1 change: 1 addition & 0 deletions packages/animate-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Below is a list of all available animations (Components).
### Fade

* `FadeIn`
* `FadeOut`
* `FadeInRightBig`
* `FadeInRight`
* `FadeInLeftBig`
Expand Down
2 changes: 2 additions & 0 deletions packages/animate-components/animations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
bounceRight,
bounceUp,
fadeIn,
fadeOut,
left,
down,
downBig,
Expand Down Expand Up @@ -82,6 +83,7 @@ const expanseObj = {

const fadeObj = {
FadeIn: hoc('FadeIn', fadeIn),
FadeOut: hoc('FadeOut', fadeOut),
FadeInDown: hoc('FadeInDown', down),
FadeInDownBig: hoc('FadeInDownBig', downBig),
FadeInUp: hoc('FadeInUp', up),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ declare module "animate-keyframes" {
bounceRight: Keyframe$Rule,
bounceUp: Keyframe$Rule,
fadeIn: Keyframe$Rule,
fadeOut: Keyframe$Rule,
left: Keyframe$Rule,
down: Keyframe$Rule,
downBig: Keyframe$Rule,
Expand Down
2 changes: 2 additions & 0 deletions packages/animate-components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import hoc from './containers/HOC';
const { Bounce, BounceUp, BounceRight, BounceLeft, BounceDown } = bounceObj;
const {
FadeIn,
FadeOut,
FadeInUp,
FadeInRight,
FadeInLeft,
Expand Down Expand Up @@ -62,6 +63,7 @@ export {
BounceLeft,
BounceDown,
FadeIn,
FadeOut,
FadeInUp,
FadeInRight,
FadeInLeft,
Expand Down
1 change: 1 addition & 0 deletions packages/animate-keyframes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { fadeIn } from 'animate-keyframes';
### Fade

* `fadeIn`
* `fadeOut`
* `up`
* `right`
* `left`
Expand Down
2 changes: 2 additions & 0 deletions packages/animate-keyframes/src/keyframes.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
const { bounce, bounceDown, bounceUp, bounceLeft, bounceRight } = Bouncing;
const {
fadeIn,
fadeOut,
left,
leftBig,
right,
Expand Down Expand Up @@ -64,6 +65,7 @@ export {
bounceRight,
bounceUp,
fadeIn,
fadeOut,
left,
down,
downBig,
Expand Down
8 changes: 8 additions & 0 deletions packages/animate-keyframes/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,14 @@ const Fade: KeyframeObject = {
opacity: 1;
}
`,
fadeOut: keyframes`
0% {
opacity: 1;
}
100% {
opacity: 0;
}
`,
left: keyframes`
from {
opacity: 0;
Expand Down