纯 HTML + CSS 实现圆形 loading 动画效果
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>圆形 Loading 动画</title>
<style>
.loading-container {
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background: conic-gradient(#3498db, #3498db) no-repeat center center;
animation: spin 2s linear infinite;
margin: 100px auto;
}
.loading-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, transparent, transparent 50%, #3498db 50%, #3498db);
background-size: 200% 200%;
animation: slide 2s linear infinite;
border-radius: 50%;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes slide {
0% {
background-position: 0 0;
}
100% {
background-position: 100% 0;
}
}
</style>
</head>
<body>
<div class="loading-container"></div>
</body>
</html>
这段代码使用了CSS3的@keyframes
动画和conic-gradient
来创建一个圆形的loading动画效果。.loading-container
是动画的主要部分,它使用conic-gradient
创建旋转的圆环,并通过animation
属性应用无限循环的旋转动画。.loading-container::before
伪元素用于创建一个旋转的条纹效果,它的background
属性被设置为线性渐变,并且通过background-size
属性使渐变重复,实现条纹的动态效果。
评论已关闭