Hover/scss/hover/_pulse.scss

23 lines
304 B
SCSS
Raw Normal View History

2014-01-03 00:54:50 +01:00
/* Pulse */
@keyframes pulse {
25% {
transform: scale(1.1);
}
75% {
transform: scale(.9);
}
}
@mixin pulse {
display: inline-block;
@extend %hacks;
&:hover {
animation-name: pulse;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
}