我正在尝试创建类似于此示例https://dribbble.com/shots/1918018-Circle-Loading-Animation的经典圆形加载器
所以,我知道可以使用带有stroke-dasharray的SVG,并确保它是简单的方法。顺便说一句,我问是否有另一种方法可以只使用SCSS(或CSS)。
我的目标是复制那种加载器,而不向HTML文件添加任何SVG。
谢谢!
如果你可以使用最小stroke-dashoffset
约为圆周长的25%,你可以按如下方式进行。
基本上你有四个方形子元素。每个都有一个圆形边框覆盖正方形的一侧(即周长的25%)。这些子元素都重叠。然后旋转每个孩子,动画开始时间略有不同。
.lds-ring {
display: inline-block;
position: relative;
width: 64px;
height: 64px;
}
.lds-ring div {
box-sizing: border-box;
display: block;
position: absolute;
width: 51px;
height: 51px;
margin: 6px;
border: 6px solid #fff;
border-radius: 50%;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
animation-delay: -0.15s;
}
@keyframes lds-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
body {
background-color: black;
}
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>