Add opera support

This commit is contained in:
Dan Eden 2011-10-21 09:35:42 +02:00
parent 976011c2e4
commit f81439e319
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,11 @@
50% { -ms-transform: scale(1.1); }
100% { -ms-transform: scale(1); }
}
@-o-keyframes pulse {
0% { -o-transform: scale(1); }
50% { -o-transform: scale(1.1); }
100% { -o-transform: scale(1); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
@ -25,5 +30,6 @@
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-ms-animation-name: pulse;
-o-animation-name: pulse;
animation-name: pulse;
}