Skip to content

Instantly share code, notes, and snippets.

@mokhov
Created December 20, 2016 17:33
Show Gist options
  • Save mokhov/7d686b234e62a6c69bfac999179dcc45 to your computer and use it in GitHub Desktop.
Save mokhov/7d686b234e62a6c69bfac999179dcc45 to your computer and use it in GitHub Desktop.
Untitled
div {
height: 50px;
width: 50px;
border-radius: 50%;
position: absolute;
top: 200px;
left: 400px;
background: black;
}
div:before {
position: absolute;
width: 100%;
height: 100%;
content: '';
background: red;
animation: rotation 0.1s linear infinite;
transform-origin: 50% -100px;
top: 100px;
border-radius: 50%;
}
@keyframes rotation {
0% { tranform: rotate(0deg); }
100% {transform: rotate(360deg); }
}
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment