Created
November 8, 2021 19:51
-
-
Save gmcusaro/db0c06e143d004ace1a8a281fd5ba84e to your computer and use it in GitHub Desktop.
Rectangle spinner
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
.spinner { | |
height: 36px; | |
width: 36; | |
background-color: #ffffff; | |
animation: flip 1s linear infinite; | |
} | |
@keyframes flip { | |
50% { | |
transform: rotateX(180deg); | |
} | |
100% { | |
transform: rotateX(180deg) rotateY(180deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment