加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
旅梦2-1.css 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
无尘 提交于 2022-06-21 16:05 . 第一次学习
*{
margin: 0;
padding: 0;
}
body{
background: #1acbfc;
/* position: relative; */
}
.traffic-light{
width: 10em;
height: 22.5em;
background: #333;
border: 0.5em solid #eee;
border-radius: 2em;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-5.5em,-50%);
}
.traffic-light::after{
content: '';
width: 3em;
height: 8em;
position: absolute;
top:100%;
left: 50%;
transform: translate(-50%);
background:linear-gradient(rgba(240,240,240,0.9),#1acbfc);
}
.Light{
width: 6em;
height: 5.5em;
background: #000;
border-radius: 50%;
border-top: 0.5em solid #000;
margin: 1em auto;
}
.red{
/* background: red; */
animation:red 10s linear infinite;
}
.amber{
/* background: #ff7100; */
animation: amber 10s linear infinite;
}
.green{
/* background: green; */
animation: green 10s linear infinite;
}
@keyframes red{
0%{
background: #000;
}
2%,40%{
background:red;
}
42%,100%{
background: #000;
}
}
@keyframes amber{
0%,20%{
background: #000;
}
22%,40%{
background: #ff7e00;
}
42%,80%{
background: #000;
}
82%,100%{
background: #ff7e00;
}
}
@keyframes green{
0%,40%{
background: #000;
}
42%,80%{
background: green;
}
82%,100%{
background: #000;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化