1 Star 1 Fork 0

xiaolibai/lee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
呼吸灯动画.html 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
= 提交于 2020-08-05 22:21 . lee
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
box-sizing: border-box;
}
div.article{
width: 200px;
height: 300px;
background-color: black;
margin:0 auto;
}
div.top{
width: 200px;
height: 200px;
padding:20px;
animation-name: outer;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
div#outer{
height: 100%;
border:5px solid #ccc;
border-radius:50%;
padding: 20px;
animation-name: inner;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
div#inner{
height: 100%;
border:10px solid #ffff;
border-radius: 50%;
}
div.text{
color: #ffff;
text-align: center;
}
/*外圆*/
@keyframes outer{
25%{
padding:10px;
}
50%{
padding: 20px;
}
100%{
padding: 20px;
}
}
/*内圆*/
@keyframes inner{
25%{
padding: 30px
}
50%{
padding: 20px;
}
75%{
padding: 32px;
}
100%{
padding: 20px;
}
}
</style>
</head>
<body>
<div class="article">
<div class="top">
<div id="outer">
<div id="inner"></div>
</div>
</div>
<div class="text">hi!</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lijie1433223/lee.git
git@gitee.com:lijie1433223/lee.git
lijie1433223
lee
lee
master

搜索帮助