Created
November 11, 2014 17:33
-
-
Save mfurlend/46be1b438bcc4a551c44 to your computer and use it in GitHub Desktop.
heartbeat css3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-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