.loader { position: relative; width: 64px; height: 64px; } .loader:before { content: ""; display: block; margin: 0 auto; width: 12px; height: 12px; border-radius: 50%; background-color: #ffffff; animation: loader 1.2s infinite ease-in-out; } @keyframes loader { 0%, 100% { transform: scale(0); } 50% { transform: scale(1); } }
.loader { position: relative; width: 64px; height: 64px; }
.loader:before { content: ""; display: block; margin: 0 auto; width: 12px; height: 12px; border-radius: 50%; background-color: #ffffff; animation: loader 1.2s infinite ease-in-out; }
@keyframes loader { 0%, 100% { transform: scale(0); } 50% { transform: scale(1); } }
上一篇css怎么劃分幾個區域
下一篇css怎么加文字間距