Skip to content

Commit

Permalink
replaced 0% keyframes with 'from' keyword to sidestep compression iss…
Browse files Browse the repository at this point in the history
…ues with yui-compressor
  • Loading branch information
mesge committed Aug 6, 2015
1 parent caa3153 commit 5dea852
Show file tree
Hide file tree
Showing 64 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion source/attention_seekers/bounce.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
from, 20%, 53%, 80%, 100% {
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flash {
0%, 50%, 100% {
from, 50%, 100% {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/jello.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes jello {
0%, 11.1%, 100% {
from, 11.1%, 100% {
transform: none
}
22.2% {
Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/pulse.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
0% {
from {
transform: scale3d(1, 1, 1);
}

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/rubberBand.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rubberBand {
0% {
from {
transform: scale3d(1, 1, 1);
}

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

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/tada.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes tada {
0% {
from {
transform: scale3d(1, 1, 1);
}

Expand Down
2 changes: 1 addition & 1 deletion source/attention_seekers/wobble.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
0% {
from {
transform: none;
}

Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_entrances/bounceIn.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
from, 20%, 40%, 60%, 80%, 100% {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_entrances/bounceInDown.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, 100% {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand Down
2 changes: 1 addition & 1 deletion source/bouncing_entrances/bounceInLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, 100% {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInRight.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, 100% {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

0% {
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
Expand Down
4 changes: 2 additions & 2 deletions source/bouncing_entrances/bounceInUp.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
from, 60%, 75%, 90%, 100% {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

0% {
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeIn.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeIn {
0% {opacity: 0;}
from {opacity: 0;}
100% {opacity: 1;}
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInDown.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInDown {
0% {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInDownBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInDownBig {
0% {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInLeft {
0% {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInLeftBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInLeftBig {
0% {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInRight {
0% {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInRightBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInRightBig {
0% {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInUp.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInUp {
0% {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_entrances/fadeInUpBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeInUpBig {
0% {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOut.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOut {
0% {opacity: 1;}
from {opacity: 1;}
100% {opacity: 0;}
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutDown.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutDown {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutDownBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutDownBig {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutLeft {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutLeftBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutLeftBig {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutRight {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutRightBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutRightBig {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutUp.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutUp {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/fading_exits/fadeOutUpBig.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes fadeOutUpBig {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flip.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flip {
0% {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipInX.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flipInX {
0% {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipInY.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flipInY {
0% {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipOutX.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flipOutX {
0% {
from {
transform: perspective(400px);
}

Expand Down
2 changes: 1 addition & 1 deletion source/flippers/flipOutY.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes flipOutY {
0% {
from {
transform: perspective(400px);
}

Expand Down
2 changes: 1 addition & 1 deletion source/lightspeed/lightSpeedIn.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes lightSpeedIn {
0% {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion source/lightspeed/lightSpeedOut.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes lightSpeedOut {
0% {
from {
opacity: 1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/rotating_entrances/rotateIn.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateIn {
0% {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_entrances/rotateInDownLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateInDownLeft {
0% {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_entrances/rotateInDownRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateInDownRight {
0% {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_entrances/rotateInUpLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateInUpLeft {
0% {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_entrances/rotateInUpRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateInUpRight {
0% {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_exits/rotateOut.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateOut {
0% {
from {
transform-origin: center;
opacity: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_exits/rotateOutDownLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateOutDownLeft {
0% {
from {
transform-origin: left bottom;
opacity: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_exits/rotateOutDownRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateOutDownRight {
0% {
from {
transform-origin: right bottom;
opacity: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_exits/rotateOutUpLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateOutUpLeft {
0% {
from {
transform-origin: left bottom;
opacity: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/rotating_exits/rotateOutUpRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes rotateOutUpRight {
0% {
from {
transform-origin: right bottom;
opacity: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/sliding_entrances/slideInDown.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideInDown {
0% {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
Expand Down
2 changes: 1 addition & 1 deletion source/sliding_entrances/slideInLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideInLeft {
0% {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
Expand Down
2 changes: 1 addition & 1 deletion source/sliding_entrances/slideInRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideInRight {
0% {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
Expand Down
2 changes: 1 addition & 1 deletion source/sliding_entrances/slideInUp.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideInUp {
0% {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
Expand Down
2 changes: 1 addition & 1 deletion source/sliding_exits/slideOutDown.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideOutDown {
0% {
from {
transform: translate3d(0, 0, 0);
}

Expand Down
2 changes: 1 addition & 1 deletion source/sliding_exits/slideOutLeft.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideOutLeft {
0% {
from {
transform: translate3d(0, 0, 0);
}

Expand Down
2 changes: 1 addition & 1 deletion source/sliding_exits/slideOutRight.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@keyframes slideOutRight {
0% {
from {
transform: translate3d(0, 0, 0);
}

Expand Down
Loading

0 comments on commit 5dea852

Please sign in to comment.