1 Star 0 Fork 0

FirePotatoBox/HTML

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
加载2.html 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
FirePotatoBox 提交于 2020-06-02 18:39 . first
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>加载动画</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000000;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: #333;
font-size: 80px;
position: relative;
border-bottom: 10px solid #333;
}
h1::before {
content: "LOADING••••••";
color: transparent;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: lightskyblue;
animation: loading 4s linear infinite;
background-clip: text;
-webkit-background-clip: text;
clip-path: inset(0 100% 0 0);
-webkit-clip-path: inset(0 100% 0 0);
border-bottom: 10px solid lightskyblue;
animation: loading 4s linear infinite;
}
@keyframes loading {
100% {
clip-path: inset(0 0 0 0);
-webkit-clip-path: inset(0 0 0 0);
}
}
</style>
</head>
<body>
<h1>LOADING••••••</h1>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/FirePotatoBox/HTML.git
git@gitee.com:FirePotatoBox/HTML.git
FirePotatoBox
HTML
HTML
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385