diff --git a/README.md b/README.md index bf875ac..73807d1 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/demo/index.html b/demo/index.html index 01dd622..92bcf9f 100644 --- a/demo/index.html +++ b/demo/index.html @@ -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 {