呼吸灯效果(极简css实现)
效果展示

在这里插入图片描述
Demo代码
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<section><span></span></section>
</body>
</html>
CSS
html,body{
margin: 0;
height: 100%;
}
body{
display: flex;
justify-content: center;
align-items: center;
background: #263238;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid red;
}
span {
width : 96px;
height: 96px;
background: white;
border-radius: 50%;
animation: animloader 1s ease-in infinite;
}
@keyframes animloader {
0% { transform: scale(0); opacity: 1;}
100% { transform: scale(1); opacity: 0;}
}
原理详解
步骤1
使用span标签,设置
- 宽度、高度均为96px
- 背景色:白色
width : 96px;
height: 96px;
background: white;
效果图如下

在这里插入图片描述
步骤2
span圆角化
border-radius: 50%;
效果图如下

步骤3
为span设置动画
- 初始状态:大小为0(相对于原大小),颜色为(白,透明级别1)
- 终止状态:大小为1(相对于原大小),颜色为(白,透明级别0)
animation: animloader 1s ease-in infinite;
@keyframes animloader {
0% { transform: scale(0); opacity: 1;}
100% { transform: scale(1); opacity: 0;}
}
效果图如下

在这里插入图片描述
相关推荐
-
mysql中group by、having以及order by用法讲解
mysql中group by、having以及order by用法讲解2025-04-24 01:19:18 -
PHP操作ES案例demo2025-04-24 01:11:04
-
php中substr()方法使用笔记2025-04-24 00:29:53
-
Nginx 实现静态资源2025-04-24 00:26:00
-
Nginx、HAProxy、LVS三者的优缺点2025-04-24 00:00:22