Unverified Commit 48ed10b4 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub

Merge pull request #2460 from paulkaplan/conserve-angular-momentum

Make the remix button spin the correct the direction
parents 40c1ac4b 3aeda220
...@@ -291,36 +291,27 @@ $stage-width: 480px; ...@@ -291,36 +291,27 @@ $stage-width: 480px;
animation-direction: normal; animation-direction: normal;
width: 1.25rem; width: 1.25rem;
height: 1.25rem; height: 1.25rem;
-webkit-animation-name: intro, spin; transform-origin: 55% 55%;
-webkit-animation-duration: .25s, .75s;
-webkit-animation-iteration-count: 1, infinite;
-webkit-animation-delay: 0s, .25s;
-webkit-animation-timing-function: cubic-bezier(.3, -3, .6, 3), ease-out;
transform-origin: center;
} }
@keyframes remix-intro { @keyframes remix-intro {
0% { 0% {
transform: scale(0); transform: scale(0);
opacity: 0; opacity: 0;
-webkit-transform: scale(0);
} }
100% { 100% {
transform: scale(1); transform: scale(1);
opacity: 1; opacity: 1;
-webkit-transform: scale(1);
} }
} }
@keyframes remix-spin { @keyframes remix-spin {
0% { 0% {
transform: rotate(0); transform: rotate(360deg);
-webkit-transform: rotate(0);
} }
100% { 100% {
transform: rotate(359deg); transform: rotate(0deg);
-webkit-transform: rotate(359deg);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment