Skip to content

Commit

Permalink
Replaced instances of step 100% with to to preserve consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mesge committed Aug 21, 2015
1 parent a2f3019 commit a479864
Show file tree
Hide file tree
Showing 72 changed files with 226 additions and 226 deletions.
300 changes: 150 additions & 150 deletions animate.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion animate.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/attention_seekers/bounce.css
@@ -1,5 +1,5 @@
@keyframes bounce {
from, 20%, 53%, 80%, 100% {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/flash.css
@@ -1,5 +1,5 @@
@keyframes flash {
from, 50%, 100% {
from, 50%, to {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/jello.css
@@ -1,5 +1,5 @@
@keyframes jello {
from, 11.1%, 100% {
from, 11.1%, to {
transform: none
}
22.2% {
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/pulse.css
Expand Up @@ -9,7 +9,7 @@
transform: scale3d(1.05, 1.05, 1.05);
}

100% {
to {
transform: scale3d(1, 1, 1);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/rubberBand.css
Expand Up @@ -23,7 +23,7 @@
transform: scale3d(1.05, .95, 1);
}

100% {
to {
transform: scale3d(1, 1, 1);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/shake.css
@@ -1,5 +1,5 @@
@keyframes shake {
from, 100% {
from, to {
transform: translate3d(0, 0, 0);
}

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/swing.css
Expand Up @@ -15,7 +15,7 @@
transform: rotate3d(0, 0, 1, -5deg);
}

100% {
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/tada.css
Expand Up @@ -15,7 +15,7 @@
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}

100% {
to {
transform: scale3d(1, 1, 1);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/wobble.css
Expand Up @@ -25,7 +25,7 @@
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}

100% {
to {
transform: none;
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceIn.css
@@ -1,5 +1,5 @@
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, 100% {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand All @@ -25,7 +25,7 @@
transform: scale3d(.97, .97, .97);
}

100% {
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInDown.css
@@ -1,5 +1,5 @@
@keyframes bounceInDown {
from, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand All @@ -21,7 +21,7 @@
transform: translate3d(0, 5px, 0);
}

100% {
to {
transform: none;
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInLeft.css
@@ -1,5 +1,5 @@
@keyframes bounceInLeft {
from, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand All @@ -21,7 +21,7 @@
transform: translate3d(5px, 0, 0);
}

100% {
to {
transform: none;
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInRight.css
@@ -1,5 +1,5 @@
@keyframes bounceInRight {
from, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand All @@ -21,7 +21,7 @@
transform: translate3d(-5px, 0, 0);
}

100% {
to {
transform: none;
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInUp.css
@@ -1,5 +1,5 @@
@keyframes bounceInUp {
from, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand All @@ -21,7 +21,7 @@
transform: translate3d(0, -5px, 0);
}

100% {
to {
transform: translate3d(0, 0, 0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_exits/bounceOut.css
Expand Up @@ -8,7 +8,7 @@
transform: scale3d(1.1, 1.1, 1.1);
}

100% {
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_exits/bounceOutDown.css
Expand Up @@ -8,7 +8,7 @@
transform: translate3d(0, -20px, 0);
}

100% {
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_exits/bounceOutLeft.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(20px, 0, 0);
}

100% {
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_exits/bounceOutRight.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(-20px, 0, 0);
}

100% {
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_exits/bounceOutUp.css
Expand Up @@ -8,7 +8,7 @@
transform: translate3d(0, 20px, 0);
}

100% {
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeIn.css
@@ -1,6 +1,6 @@
@keyframes fadeIn {
from {opacity: 0;}
100% {opacity: 1;}
to {opacity: 1;}
}

.fadeIn {
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInDown.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(0, -100%, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInDownBig.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(0, -2000px, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInLeft.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(-100%, 0, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInLeftBig.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(-2000px, 0, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInRight.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(100%, 0, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInRightBig.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(2000px, 0, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInUp.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(0, 100%, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInUpBig.css
Expand Up @@ -4,7 +4,7 @@
transform: translate3d(0, 2000px, 0);
}

100% {
to {
opacity: 1;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOut.css
@@ -1,6 +1,6 @@
@keyframes fadeOut {
from {opacity: 1;}
100% {opacity: 0;}
to {opacity: 0;}
}

.fadeOut {
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutDown.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutDownBig.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutLeft.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutLeftBig.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutRight.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutRightBig.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutUp.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutUpBig.css
Expand Up @@ -3,7 +3,7 @@
opacity: 1;
}

100% {
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flip.css
Expand Up @@ -19,7 +19,7 @@
animation-timing-function: ease-in;
}

100% {
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipInX.css
Expand Up @@ -19,7 +19,7 @@
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}

100% {
to {
transform: perspective(400px);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipInY.css
Expand Up @@ -19,7 +19,7 @@
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}

100% {
to {
transform: perspective(400px);
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipOutX.css
Expand Up @@ -8,7 +8,7 @@
opacity: 1;
}

100% {
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
Expand Down

0 comments on commit a479864

Please sign in to comment.