mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 19:18:40 +00:00
80 lines
2.3 KiB
CSS
80 lines
2.3 KiB
CSS
.spinner-1 {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: #333;
|
|
margin: 50px auto;
|
|
-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
|
|
animation: sk-rotateplane 1.2s infinite ease-in-out; }
|
|
|
|
@-webkit-keyframes sk-rotateplane {
|
|
0% {
|
|
-webkit-transform: perspective(120px); }
|
|
50% {
|
|
-webkit-transform: perspective(120px) rotateY(180deg); }
|
|
100% {
|
|
-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }
|
|
@keyframes sk-rotateplane {
|
|
0% {
|
|
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
|
|
50% {
|
|
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
|
|
100% {
|
|
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }
|
|
.spinner-2 {
|
|
text-align: center; }
|
|
.spinner-2 > div {
|
|
width: 18px;
|
|
height: 18px;
|
|
background-color: #333;
|
|
border-radius: 100%;
|
|
display: inline-block;
|
|
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
animation: sk-bouncedelay 1.4s infinite ease-in-out both; }
|
|
.spinner-2 .bounce1 {
|
|
-webkit-animation-delay: -0.32s;
|
|
animation-delay: -0.32s; }
|
|
.spinner-2 .bounce2 {
|
|
-webkit-animation-delay: -0.16s;
|
|
animation-delay: -0.16s; }
|
|
|
|
@-webkit-keyframes sk-bouncedelay {
|
|
0%, 80%, 100% {
|
|
-webkit-transform: scale(0); }
|
|
40% {
|
|
-webkit-transform: scale(1); } }
|
|
@keyframes sk-bouncedelay {
|
|
0%, 80%, 100% {
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0); }
|
|
40% {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1); } }
|
|
.spinner-3 {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin: 50px auto;
|
|
background-color: #333;
|
|
border-radius: 100%;
|
|
-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
|
|
animation: sk-scaleout 1.0s infinite ease-in-out; }
|
|
|
|
@-webkit-keyframes sk-scaleout {
|
|
0% {
|
|
-webkit-transform: scale(0); }
|
|
100% {
|
|
-webkit-transform: scale(1);
|
|
opacity: 0; } }
|
|
@keyframes sk-scaleout {
|
|
0% {
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0); }
|
|
100% {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
opacity: 0; } }
|
|
|
|
/*# sourceMappingURL=spinner.css.map */
|