Skip to content

Commit

Permalink
Merge pull request #24 from janantala/canary
Browse files Browse the repository at this point in the history
chore(demo): pulsate love heart
  • Loading branch information
janantala committed Jun 22, 2014
2 parents b4c3bf7 + 6a4a6f3 commit 1134e40
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ The karma task will try to open Chrome as a browser in which to run the tests. M

The MIT License

Copyright (c) 2013 [Jan Antala](http://www.janantala.com)
Copyright (c) 2014 [Jan Antala](http://www.janantala.com)
18 changes: 15 additions & 3 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,25 @@
}

@-webkit-keyframes love {
to {-webkit-transform: scale(1.2);}
to {
-webkit-transform: scale(1.4);
transform: scale(1.4);
}
}

@-moz-keyframes love {
to {-moz-transform: scale(1.2);}
to {
-moz-transform: scale(1.4);
transform: scale(1.4);
}
}

@keyframes love {
to {transform: scale(1.2);}
to {
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
transform: scale(1.4);
}
}

.code {
Expand Down

0 comments on commit 1134e40

Please sign in to comment.