diff -r 37ad459579bc -r ee3fba561fd8 ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html --- a/ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html Mon Sep 09 17:34:30 2013 +0200 +++ b/ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html Thu Sep 26 19:39:14 2013 +0200 @@ -9,12 +9,21 @@ 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } + @keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } + } .rotate { -webkit-animation-name: spin; -webkit-animation-duration: 3s; -webkit-animation-iteration-count: infinite; -webkit-animation-direction: alternate; + + animation-name: spin; + animation-duration: 3s; + animation-iteration-count: infinite; + animation-direction: alternate; } #scene {