#212121
1.loader { 2 width: 100%; 3 height: 100%; 4 display: flex; 5 flex-wrap: wrap; 6 align-items: center; 7 justify-content: center; 8 gap: 10px; 9 transition: 0.5s linear; 10} 11 12.ball { 13 width: 20px; 14 height: 20px; 15 border-radius: 50%; 16 animation: bounce6135 1s alternate infinite; 17 transition: 0.5s linear; 18} 19 20.ball { 21 background: #fff; 22} 23 24.ball:nth-child(2) { 25 animation-delay: 0.25s; 26} 27 28.ball:nth-child(3) { 29 animation-delay: 0.5s; 30} 31 32@keyframes bounce6135 { 33 from { 34 transform: scale(2); 35 } 36 37 to { 38 transform: scale(1); 39 } 40} 41 42
738 views
738 views
Comments
MIT License