Skip to content

Commit 11ffec0

Browse files
committed
Add opera support
1 parent 87ab12e commit 11ffec0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

source/rotateInDownLeft.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 rotateInDownLeft {
44+
0% {
45+
-o-transform-origin: left bottom;
46+
-o-transform: rotate(-90deg);
47+
opacity: 0;
48+
}
49+
50+
100% {
51+
-o-transform-origin: left bottom;
52+
-o-transform: rotate(0);
53+
opacity: 1;
54+
}
55+
}
56+
4357
@keyframes rotateInDownLeft {
4458
0% {
4559
transform-origin: left bottom;
@@ -58,5 +72,6 @@
5872
-webkit-animation-name: rotateInDownLeft;
5973
-moz-animation-name: rotateInDownLeft;
6074
-ms-animation-name: rotateInDownLeft;
75+
-o-animation-name: rotateInDownLeft;
6176
animation-name: rotateInDownLeft;
6277
}

0 commit comments

Comments
 (0)