Horje
How to add a pure css loading spinner Code Example
How to add a pure css loading spinner
.loader {
  width: 100%;
  margin: 50px auto;
  align-items: center;
  border: 7px solid #f3f3f3; /* Light grey */
  border-top: 7px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

<div class="loader"></div>




Css

Related
how to create a snake game in html css js Code Example how to create a snake game in html css js Code Example
titillium font Code Example titillium font Code Example
css absolute z index less than Code Example css absolute z index less than Code Example
text glow effect Code Example text glow effect Code Example
how to affect a deffernt element in css Code Example how to affect a deffernt element in css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10