ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html
changeset 1300 ee3fba561fd8
parent 1273 37ad459579bc
     1.1 --- a/ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html	Mon Sep 09 17:34:30 2013 +0200
     1.2 +++ b/ko/archetype/src/main/resources/archetype-resources/src/main/webapp/pages/index.html	Thu Sep 26 19:39:14 2013 +0200
     1.3 @@ -9,12 +9,21 @@
     1.4                  0% { -webkit-transform: rotate(0deg); }
     1.5                  100% { -webkit-transform: rotate(360deg); }
     1.6              }
     1.7 +            @keyframes spin {
     1.8 +                0% { transform: rotate(0deg); }
     1.9 +                100% { transform: rotate(360deg); }
    1.10 +            }
    1.11  
    1.12              .rotate {
    1.13                  -webkit-animation-name: spin;
    1.14                  -webkit-animation-duration: 3s;
    1.15                  -webkit-animation-iteration-count: infinite;
    1.16                  -webkit-animation-direction: alternate;
    1.17 +                
    1.18 +                animation-name: spin;
    1.19 +                animation-duration: 3s;
    1.20 +                animation-iteration-count: infinite;
    1.21 +                animation-direction: alternate;
    1.22              }
    1.23  
    1.24              #scene {