代码拉取完成,页面将自动刷新
<!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;
}
.loader{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 200px;
height: 200px;
/* background: #000; */
box-sizing: border-box;
border-radius: 50%;
}
.loader:before{
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 0;
height: 0;
box-sizing: border-box;
border-radius: 50%;
animation: animate 2s linear infinite;
}
.loader:after{
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 0;
height: 0;
box-sizing: border-box;
border-radius: 50%;
animation: animate 2s linear infinite;
animation-delay: 1s;
}
@keyframes animate {
0%{
width: 0;
height: 0;
border: 4px solid #000;
opacity: 1;
box-shadow: 0 0 10 #000;
}
70%{
opacity: 1;
}
100%{
width: 100%;
height: 100%;
border: 4px solid #000;
opacity: 0;
box-shadow: 0 0 10 #000;
}
}
</style>
<body>
<div class="loader">
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。