Skip to content

Instantly share code, notes, and snippets.

@gplcart
Created October 20, 2017 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gplcart/7ecb7f6123abd9ebcbddca103caf6049 to your computer and use it in GitHub Desktop.
Save gplcart/7ecb7f6123abd9ebcbddca103caf6049 to your computer and use it in GitHub Desktop.
<div class="loading"><div class="loading-wheel"></div></div>
.loading {
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 99999;
background-color: rgba(0,0,0,.4);
}
.loading-wheel {
width: 20px;
height: 20px;
margin-top: -40px;
margin-left: -40px;
position: absolute;
top: 50%;
left: 50%;
border-width: 30px;
border-radius: 50%;
-webkit-animation: spin 1s linear infinite;
border-style: double;
border-color: #ccc transparent;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment