Skip to content

Instantly share code, notes, and snippets.

@ryanseys
Created March 17, 2014 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanseys/9606018 to your computer and use it in GitHub Desktop.
Save ryanseys/9606018 to your computer and use it in GitHub Desktop.
.heart {
font-size: 200pt;
line-height: 0.9;
text-align: center;
color: red;
-webkit-animation:beat 0.6s infinite; /* Chrome, Safari, Opera */
-moz-animation:beat 0.6s infinite;
animation:beat 0.6s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes beat
{
0% {font-size:200pt;}
7% {font-size:190pt;}
21% {font-size:200pt;}
35% {font-size:280pt;}
60% {font-size:220pt;}
65% {font-size:225pt;}
100% {font-size:200pt;}
}
/* Standard syntax */
@keyframes beat
{
0% {font-size:200pt;}
7% {font-size:190pt;}
21% {font-size:200pt;}
35% {font-size:280pt;}
60% {font-size:220pt;}
65% {font-size:225pt;}
100% {font-size:200pt;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment