|
|
|
|
|
本文介紹一個CSS3 loading預加載動畫——旋轉的圓弧,代碼很少,效果卻很好看。
CSS代碼
.loading {
position: absolute;
left: 50%;
top: 50%;
margin: -60px 0 0 -60px;
background: #fff;
width: 100px;
height: 100px;
border-radius: 100%;
border: 10px solid #19bee1;
}
.loading:after {
content: '';
background: trasparent;
width: 140%;
height: 140%;
position: absolute;
border-radius: 100%;
top: -20%;
left: -20%;
opacity: 0.7;
box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
animation: rotate 2s infinite linear;
}
@keyframes rotate {
0% {
transform: rotateZ(0deg);
}
100% {
transform: rotateZ(360deg);
}
}
html代碼
<div class="loading"></div>
使用說明
html代碼只需一個div
,把其class
屬性設為loading
。
可以通過修改.loading
的css代碼修改動畫顏色、大小。