4 Star 0 Fork 0

brother-dazhao/work

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cheng.css 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
lyys_ze 提交于 2022-05-23 20:28 . hc
.container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: rgb(121, 121, 121);
flex-direction: column;
filter: contrast(30);
}
.drop {
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
position: absolute;
filter: blur(20px);
opacity: 0;
animation: 2.5s drop linear infinite;
}
.drop:nth-child(2) {
animation-delay: .5s;
}
.drop:nth-child(3) {
animation-delay: .7s;
}
.collection {
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
filter: blur(20px);
animation: 3s collection linear infinite;
}
span {
position: absolute;
/* font-family: Helvetica; */
font-size: 30px;
color: aqua;
transition: all 1s;
}
@keyframes drop {
0% {
transform: scale(.7) translateY(-600%);
opacity: 0;
}
50% {
transform: scale(.4) translateY(-80%);
opacity: 1;
}
100% {
transform: scale(.3) translateY(0px);
}
}
@keyframes collection {
0% {
transform: scale(1) rotate(0deg);
}
50% {
transform: scale(1.3) rotate(180deg);
width: 90px;
border-top-left-radius: 40%;
border-bottom-left-radius: 45%;
}
100% {
transform: scale(1) rotate(360deg);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/brother-dazhao/work.git
git@gitee.com:brother-dazhao/work.git
brother-dazhao
work
work
master

搜索帮助