Created
October 27, 2021 14:16
-
-
Save shuding/40e6e13ab1dc3a3d86d8aacabb22dd5c to your computer and use it in GitHub Desktop.
Spinner without 12 divs
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="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