123456789101112131415161718192021222324252627282930313233343536 |
- .lds-facebook {
- display: inline-block;
- position: relative;
- width: 64px;
- height: 64px;
- }
- .lds-facebook view {
- display: inline-block;
- position: absolute;
- left: 6px;
- width: 13px;
- background: #42b983;//可修改颜色
- animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
- }
- .lds-facebook view:nth-child(1) {
- left: 6px;
- animation-delay: -0.24s;
- }
- .lds-facebook view:nth-child(2) {
- left: 26px;
- animation-delay: -0.12s;
- }
- .lds-facebook view:nth-child(3) {
- left: 45px;
- animation-delay: 0;
- }
- @keyframes lds-facebook {
- 0% {
- top: 6px;
- height: 51px;
- }
- 50%, 100% {
- top: 19px;
- height: 26px;
- }
- }
|