Skip to content

Instantly share code, notes, and snippets.

@shuding
Created October 27, 2021 14:16
Show Gist options
  • Save shuding/40e6e13ab1dc3a3d86d8aacabb22dd5c to your computer and use it in GitHub Desktop.
Save shuding/40e6e13ab1dc3a3d86d8aacabb22dd5c to your computer and use it in GitHub Desktop.
Spinner without 12 divs
<div class="spinner">
.spinner {
margin: 12px;
width: 28px;
height: 28px;
animation: spinner-rotating 1.2s infinite;
animation-timing-function: steps(12, end);
}
.spinner:before {
content: '';
display: block;
width: 4px;
height: 4px;
margin: 0;
margin-left: 12px;
border-radius: 50%;
background: #888;
color: #ccc;
box-shadow:
6px 1.61px,
10.39px 6px,
12px 12px,
10.39px 18px,
6px 22.39px,
0 24px,
-6px 1.61px #999,
-10.39px 6px #aaa,
-12px 12px #bbb,
-10.39px 18px,
-6px 22.39px;
}
@keyframes spinner-rotating {
from { transform: rotate(0deg) }
to { transform: rotate(360deg) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment