Created
December 20, 2016 17:33
-
-
Save mokhov/7d686b234e62a6c69bfac999179dcc45 to your computer and use it in GitHub Desktop.
Untitled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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