1. 程式人生 > >使用transform-origin 實現loading效果

使用transform-origin 實現loading效果

body { margin: 0; } .center { display: flex; margin-top: 200px; justify-content: center; align-items: center; } .center>span { position: absolute; display: inline-block; width: 20px; height: 10px; background
: #999; transform-origin: 300% 50%; animation: load 1.04s ease infinite; } @keyframes load { 0% { opacity: 1; } 100% { opacity: 0.2; } } .center>span:nth-of-type(1) { transform: rotate(0deg); } .center>span:nth-of-type(2)
{ transform: rotate(60deg); animation-delay:0.13s; } .center>span:nth-of-type(3) { transform: rotate(120deg); animation-delay:0.26s; } .center>span:nth-of-type(4) { transform: rotate(180deg); animation-delay:0.39s; } .center>span:nth-of-type(5)
{ transform: rotate(240deg); animation-delay:0.52s; } .center>span:nth-of-type(6) { transform: rotate(300deg); animation-delay:0.65s; }