Skip to content

Commit 6a12bed

Browse files
committed
Fix timing-function issue. Default value is 'ease' anyway, so '-prefix-animation: 1s ease;' changed to '-prefix-animation-duration: 1s'
1 parent 480ce0b commit 6a12bed

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

animate.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1212
*/
1313

1414
.animated {
15-
-webkit-animation: 1s ease;
16-
-moz-animation: 1s ease;
17-
-ms-animation: 1s ease;
18-
-o-animation: 1s ease;
19-
animation: 1s ease;
15+
-webkit-animation-duration: 1s;
16+
-moz-animation-duration: 1s;
17+
-ms-animation-duration: 1s;
18+
-o-animation-duration: 1s;
19+
animation-duration: 1s;
2020
-webkit-animation-fill-mode: both;
2121
-moz-animation-fill-mode: both;
2222
-ms-animation-fill-mode: both;
@@ -25,11 +25,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2525
}
2626

2727
.animated.hinge {
28-
-webkit-animation: 2s ease;
29-
-moz-animation: 2s ease;
30-
-ms-animation: 2s ease;
31-
-o-animation: 2s ease;
32-
animation: 2s ease;
28+
-webkit-animation-duration: 2s;
29+
-moz-animation-duration: 2s;
30+
-ms-animation-duration: 2s;
31+
-o-animation-duration: 2s;
32+
animation-duration: 2s;
3333
}
3434

3535
@-webkit-keyframes flash {

0 commit comments

Comments
 (0)