mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
b3fae9fe00
Since IE10 dropped the animation, transform, and transition prefixes, and no stable release was made with them, we can safely drop the prefixes, too. Cutting a good 20% off the file sizes!
29 lines
No EOL
747 B
CSS
29 lines
No EOL
747 B
CSS
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
|
|
|
@-webkit-keyframes pulse {
|
|
0% { -webkit-transform: scale(1); }
|
|
50% { -webkit-transform: scale(1.1); }
|
|
100% { -webkit-transform: scale(1); }
|
|
}
|
|
@-moz-keyframes pulse {
|
|
0% { -moz-transform: scale(1); }
|
|
50% { -moz-transform: scale(1.1); }
|
|
100% { -moz-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); }
|
|
100% { transform: scale(1); }
|
|
}
|
|
|
|
.pulse {
|
|
-webkit-animation-name: pulse;
|
|
-moz-animation-name: pulse;
|
|
-o-animation-name: pulse;
|
|
animation-name: pulse;
|
|
} |