Add opera support

This commit is contained in:
Dan Eden 2011-10-21 09:36:03 +02:00
parent f81439e319
commit 28163bc7cc
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@
100% { opacity: 1; -ms-transform: translateX(0px) rotate(0deg); }
}
@-o-keyframes rollIn {
0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
}
@keyframes rollIn {
0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
100% { opacity: 1; transform: translateX(0px) rotate(0deg); }