Skip to content

Commit

Permalink
fix transition-timing-functions to animation-timing-functions
Browse files Browse the repository at this point in the history
  • Loading branch information
zvuc committed Apr 29, 2015
1 parent c0abb26 commit 534731f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions source/attention_seekers/bounce.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}

40%, 43% {
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}

70% {
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}

Expand Down
4 changes: 2 additions & 2 deletions source/flippers/flipInX.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@keyframes flipInX {
0% {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transition-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}

40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transition-timing-function: ease-in;
animation-timing-function: ease-in;
}

60% {
Expand Down
4 changes: 2 additions & 2 deletions source/flippers/flipInY.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@keyframes flipInY {
0% {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transition-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}

40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transition-timing-function: ease-in;
animation-timing-function: ease-in;
}

60% {
Expand Down

0 comments on commit 534731f

Please sign in to comment.