Skip to content

Instantly share code, notes, and snippets.

@mfurlend
Created November 11, 2014 17:33
Show Gist options
  • Save mfurlend/46be1b438bcc4a551c44 to your computer and use it in GitHub Desktop.
Save mfurlend/46be1b438bcc4a551c44 to your computer and use it in GitHub Desktop.
heartbeat css3
@-webkit-keyframes heartbeat {
0% { -webkit-transform: scale(1); }
50% { -webkit-transform: scale(0.9); }
100% { -webkit-transform: scale(1); }
}
/* line 88, ../sass/login_header.scss */
#el:hover{
-webkit-animation-name: heartbeat;
-webkit-animation-duration: 200ms;
-webkit-transform-origin:50% 50%;
-webkit-animation-iteration-count: 2;
-webkit-animation-timing-function: linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment