快速 CSS 技巧!一个动画加载 loading
为我们的加载器 loading 创建标记。请注意内嵌自定义属性的使用:
<div class="loader" style="--count: 10">
<span style="--index: 0"></span>
<span style="--index: 1"></span>
<span style="--index: 2"></span>
<span style="--index: 3"></span>
<span style="--index: 4"></span>
<span style="--index: 5"></span>
<span style="--index: 6"></span>
<span style="--index: 7"></span>
<span style="--index: 8"></span>
<span style="--index: 9"></span>
</div>
为我们的加载器 loading 提供一些样式:
loader {
--size: 10vmin;
height: var(--size);
position: relative;
width: var(--size);
}
使用绝对定位以及 calc
与 transform
的组合来定位线条:
.loader span {
background: grey;
height: 25%;
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%)
rotate(calc(((360 / var(--count)) * var(--index)) * 1deg))
translate(0, -125%);
width: 10%;
}
根据 --index
应用不透明度:
.loader span {
opacity: calc(var(--index) / var(--count));
}
尽情旋转吧!
.loader {
animation: spin 0.75s infinite steps(var(--count));
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
请注意使用 steps(var(--count))
以实现正确的效果 ✨
阅读余下内容