// html
<div class="animation"></div>
// CSS
.animation {
position: relative;
width: 10px;
height: 10px;
background: #409eff;
border-radius: 50%;
&:after {
content: '';
position: absolute;
top: -5px;
left: -5px;
width: 100%;
height: 100%;
border: 5px solid #ff1883;
border-radius: 50%;
animation: antStatusProcessing 1.2s ease-in-outinfinite;
}
}
@keyframes antStatusProcessing {
0% {
-webkit-transform: scale(.8);
transform: scale(.8);
opacity: .5
}
to {
-webkit-transform: scale(2.4);
transform: scale(2.4);
opacity: 0
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。