Skip to content

Commit 5dea852

Browse files
committed
replaced 0% keyframes with 'from' keyword to sidestep compression issues with yui-compressor
1 parent caa3153 commit 5dea852

64 files changed

Lines changed: 66 additions & 66 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

source/attention_seekers/bounce.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes bounce {
2-
0%, 20%, 53%, 80%, 100% {
2+
from, 20%, 53%, 80%, 100% {
33
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
44
transform: translate3d(0,0,0);
55
}

source/attention_seekers/flash.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes flash {
2-
0%, 50%, 100% {
2+
from, 50%, 100% {
33
opacity: 1;
44
}
55

source/attention_seekers/jello.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes jello {
2-
0%, 11.1%, 100% {
2+
from, 11.1%, 100% {
33
transform: none
44
}
55
22.2% {

source/attention_seekers/pulse.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
22

33
@keyframes pulse {
4-
0% {
4+
from {
55
transform: scale3d(1, 1, 1);
66
}
77

source/attention_seekers/rubberBand.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes rubberBand {
2-
0% {
2+
from {
33
transform: scale3d(1, 1, 1);
44
}
55

source/attention_seekers/shake.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes shake {
2-
0%, 100% {
2+
from, 100% {
33
transform: translate3d(0, 0, 0);
44
}
55

source/attention_seekers/tada.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes tada {
2-
0% {
2+
from {
33
transform: scale3d(1, 1, 1);
44
}
55

source/attention_seekers/wobble.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
22

33
@keyframes wobble {
4-
0% {
4+
from {
55
transform: none;
66
}
77

source/bouncing_entrances/bounceIn.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes bounceIn {
2-
0%, 20%, 40%, 60%, 80%, 100% {
2+
from, 20%, 40%, 60%, 80%, 100% {
33
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
44
}
55

source/bouncing_entrances/bounceInDown.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@keyframes bounceInDown {
2-
0%, 60%, 75%, 90%, 100% {
2+
from, 60%, 75%, 90%, 100% {
33
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
44
}
55

0 commit comments

Comments
 (0)