Skip to content

Commit 74faaab

Browse files
committed
Add opera support
1 parent 11ffec0 commit 74faaab

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

source/rotateInDownRight.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,20 @@
4040
}
4141
}
4242

43+
@-o-keyframes rotateInDownRight {
44+
0% {
45+
-o-transform-origin: right bottom;
46+
-o-transform: rotate(90deg);
47+
opacity: 0;
48+
}
49+
50+
100% {
51+
-o-transform-origin: right bottom;
52+
-o-transform: rotate(0);
53+
opacity: 1;
54+
}
55+
}
56+
4357
@keyframes rotateInDownRight {
4458
0% {
4559
transform-origin: right bottom;
@@ -58,5 +72,6 @@
5872
-webkit-animation-name: rotateInDownRight;
5973
-moz-animation-name: rotateInDownRight;
6074
-ms-animation-name: rotateInDownRight;
75+
-o-animation-name: rotateInDownRight;
6176
animation-name: rotateInDownRight;
6277
}

0 commit comments

Comments
 (0)