Skip to content

Commit 534731f

Browse files
committed
fix transition-timing-functions to animation-timing-functions
1 parent c0abb26 commit 534731f

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

source/attention_seekers/bounce.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
@keyframes bounce {
22
0%, 20%, 53%, 80%, 100% {
3-
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
3+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
44
transform: translate3d(0,0,0);
55
}
66

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

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

source/flippers/flipInX.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@keyframes flipInX {
22
0% {
33
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
4-
transition-timing-function: ease-in;
4+
animation-timing-function: ease-in;
55
opacity: 0;
66
}
77

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

1313
60% {

source/flippers/flipInY.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@keyframes flipInY {
22
0% {
33
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
4-
transition-timing-function: ease-in;
4+
animation-timing-function: ease-in;
55
opacity: 0;
66
}
77

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

1313
60% {

0 commit comments

Comments
 (0)