Simple loading indicator animation for @alpcanaydin
Created
November 10, 2015 16:36
-
-
Save Poordeveloper/0fd1029a601a85086737 to your computer and use it in GitHub Desktop.
A simple one div loading
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 class="loading"></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
body { | |
background: #0d8aa5; | |
} | |
.loading { | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
margin: -60px 0 0 -60px; | |
background: #fff; | |
width: 100px; | |
height: 100px; | |
border-radius: 100%; | |
border: 10px solid #19bee1; | |
} | |
.loading:after { | |
content: ''; | |
background: trasparent; | |
width: 140%; | |
height: 140%; | |
position: absolute; | |
border-radius: 100%; | |
top: -20%; | |
left: -20%; | |
opacity: 0.7; | |
box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px; | |
animation: rotate 2s infinite linear; | |
} | |
@keyframes rotate { | |
0% { | |
transform: rotateZ(0deg); | |
} | |
100% { | |
transform: rotateZ(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment