1 Star 0 Fork 1

uxuryplx/css_动画

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
边框线条框动画.html 2.79 KB
一键复制 编辑 原始数据 按行查看 历史
uxuryplx 提交于 2023-07-07 15:36 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body{
margin: 0;
padding: 0;
background-color: #000;
}
.loader{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 400px;
height: 100px;
text-align: center;
line-height: 100px;
color: aqua;
font-size: 40px;
text-transform: uppercase;
letter-spacing: 15px;
font-family: sans-serif;
overflow: hidden;
}
.loader span{
position: absolute;
background-color: #fff;
}
.loader span:nth-child(1){
width: 100%;
height: 4px;
top: 0;
left: -100%;
animation: animate1 2s linear infinite;
}
.loader span:nth-child(3){
width: 100%;
height: 4px;
bottom: 0;
right: -100%;
animation: animate3 2s linear infinite;
}
.loader span:nth-child(2){
width: 4px;
height: 100%;
right: 0;
top: -100%;
animation: animate2 2s linear infinite;
}
.loader span:nth-child(4){
width: 4px;
height: 100%;
left: 0;
bottom: -100%;
animation: animate4 2s linear infinite;
}
@keyframes animate1 {
0%{
left: -100%;
}
20%{
left: 0;
}
40%{
left: 100%;
}
60%{
left: 100%;
}
80%{
left: 100%;
}
100%{
left: 100%;
}
}
@keyframes animate2 {
0%{
top: -100%;
}
20%{
top: -100%;
}
40%{
top:0;
}
60%{
top: 100%;
}
80%{
top: 100%;
}
100%{
top: 100%;
}
}
@keyframes animate3 {
0%{
right: -100%;
}
20%{
right: -100%;
}
40%{
right: -100%;
}
60%{
right: 0;
}
80%{
right: 100%;
}
100%{
right: 100%;
}
}
@keyframes animate4 {
0%{
bottom: -100%;
}
20%{
bottom: -100%;
}
40%{
bottom: -100%;
}
60%{
bottom: -100%;
}
80%{
bottom: 0;
}
100%{
bottom: 100%;
}
}
</style>
<body>
<div class="loader">
Loading
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/plxvervewvr434232/css-animation.git
git@gitee.com:plxvervewvr434232/css-animation.git
plxvervewvr434232
css-animation
css_动画
master

搜索帮助