1 |
<div class="loading"></div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
.loading{ width: 0; height: 0; margin: 0 auto; border: 36px solid #222; border-color: #222 transparent; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
.loading{ position: relative; width: 0; height: 0; margin: 0 auto; border: 36px solid #222; border-color: #222 transparent; border-radius: 50%; z-index: 1; animation: spin 1s linear infinite; } .loading2:after{ content: ""; position: absolute; top: -30px; left: -30px; width: 0; height: 0; border: 30px solid #222; border-color: #fff; border-radius: 50%; z-index: 2; } @keyframes spin{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
.loading3{ position: relative; width: 0; height: 0; margin: 0 auto; border: 36px solid #222; border-color: #eee #aaa #666 #222; border-radius: 50%; z-index: 1; animation: spin 1s linear infinite; } .loading3:after{ content: ""; position: absolute; top: -30px; left: -30px; width: 0; height: 0; border: 30px solid #222; border-color: #fff; border-radius: 50%; z-index: 2; } @keyframes spin{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
.loading4{ position: relative; width: 0; height: 0; margin: 0 auto; border: 36px solid #222; border-color: #eee #aaa #666 #222; border-radius: 50%; z-index: 1; animation: spin 1s linear infinite; } .loading4:after{ content: ""; position: absolute; top: -30px; left: -30px; width: 0; height: 0; border: 30px solid #222; border-color: #fff; border-radius: 50%; z-index: 2; } .loading4:before{ content: ""; position: absolute; top: -20px; left: -20px; width: 0; height: 0; border: 20px solid #222; border-color: #eee #aaa #666 #222; border-radius: 50%; z-index: 3; } @keyframes spin{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } } |