12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .lds-grid {
- display: inline-block;
- position: relative;
- width: 64px;
- height: 64px;
- }
- .lds-grid view {
- position: absolute;
- width: 13px;
- height: 13px;
- border-radius: 50%;
- background: #42b983;//可修改颜色
- animation: lds-grid 1.2s linear infinite;
- }
- .lds-grid view:nth-child(1) {
- top: 6px;
- left: 6px;
- animation-delay: 0s;
- }
- .lds-grid view:nth-child(2) {
- top: 6px;
- left: 26px;
- animation-delay: -0.4s;
- }
- .lds-grid view:nth-child(3) {
- top: 6px;
- left: 45px;
- animation-delay: -0.8s;
- }
- .lds-grid view:nth-child(4) {
- top: 26px;
- left: 6px;
- animation-delay: -0.4s;
- }
- .lds-grid view:nth-child(5) {
- top: 26px;
- left: 26px;
- animation-delay: -0.8s;
- }
- .lds-grid view:nth-child(6) {
- top: 26px;
- left: 45px;
- animation-delay: -1.2s;
- }
- .lds-grid view:nth-child(7) {
- top: 45px;
- left: 6px;
- animation-delay: -0.8s;
- }
- .lds-grid view:nth-child(8) {
- top: 45px;
- left: 26px;
- animation-delay: -1.2s;
- }
- .lds-grid view:nth-child(9) {
- top: 45px;
- left: 45px;
- animation-delay: -1.6s;
- }
- @keyframes lds-grid {
- 0%, 100% {
- opacity: 1;
- }
- 50% {
- opacity: 0.5;
- }
- }
|