Skip to content

Commit 94a8fe4

Browse files
committed
Add opera support
1 parent 1cb5ee5 commit 94a8fe4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

source/tada.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
100% {-ms-transform: scale(1) rotate(0);}
2323
}
2424

25+
@-o-keyframes tada {
26+
0% {-o-transform: scale(1);}
27+
10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
28+
30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
29+
40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
30+
100% {-o-transform: scale(1) rotate(0);}
31+
}
32+
2533
@keyframes tada {
2634
0% {transform: scale(1);}
2735
10%, 20% {transform: scale(0.9) rotate(-3deg);}
@@ -34,5 +42,6 @@
3442
-webkit-animation-name: tada;
3543
-moz-animation-name: tada;
3644
-ms-animation-name: tada;
45+
-o-animation-name: tada;
3746
animation-name: tada;
3847
}

0 commit comments

Comments
 (0)