代码拉取完成,页面将自动刷新
<!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>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
background-color: #fff;
}
.container{
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.container .loader{
position: relative;
width: 150px;
height: 150px;
margin: 100px;
}
.container .loader.one span{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
background:#5989ff;
border-radius: 50%;
animation: animate ease-in-out 2s infinite;
}
@keyframes animate {
0% ,100%{
transform: translateX(-80px);
}
50%{
transform: translateX(80px);
}
}
.container .loader.one span:nth-child(2){
left: 50%;
background: rgba(56, 109, 241, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
animation-delay: -1s;
}
/* And Shadow*/
.container .loader.one span:before,
.container .loader.two span:nth-child(1):before{
content: '';
position: absolute;
bottom: -100px;
left: -20%;
width: 140%;
height: 40px;
border-radius: 50%;
background: radial-gradient(rgba(0,0,0,0.04),transparent,transparent);
}
.container .loader.two{
position: relative;
width: 180px;
height: 180px;
}
.container .loader.two span:nth-child(1){
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
background: rgba(233, 30, 99, 0.05);
border-radius: 50%;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
z-index: 2;
}
.container .loader.two span:nth-child(2){
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
border-radius: 50%;
z-index: 1;
overflow: hidden;
animation: rotateCricle 1s linear infinite;
}
@keyframes rotateCricle{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
.container .loader.two span:nth-child(2)::before{
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 100%;
height: 100%;
background: #ff6;
}
</style>
<body>
<div class="container">
<div class="loader one">
<span> </span>
<span> </span>
</div>
<div class="loader two">
<span> </span>
<span> </span>
</div>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。