【第14期】一个Loading的css动画效果

2023-03-22

html代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>一个Loading的css动画效果</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="ring"></div>
<div class="ring"></div>
<div class="ring"></div>
<p>Loading...</p>
</div>
</body>
</html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>一个Loading的css动画效果</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="ring"></div> <div class="ring"></div> <div class="ring"></div> <p>Loading...</p> </div> </body> </html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>一个Loading的css动画效果</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <div class="ring"></div>
        <div class="ring"></div>
        <div class="ring"></div>
        <p>Loading...</p>
    </div>
</body>
</html>

css代码:

.{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background:#111;
}
.container
{
position:relative;
width:100%;
display: flex;
justify-content: center;
align-items: center;
}
.container .ring
{
position:relative;
width:150px;
height:150px;
margin:-30px;
border-radius: 50%;
border:4px solid transparent;
border-top:4px solid #24ecff;
animation:animate 4s linear infinite;
}
@keyframes animate
{
0%
{
transform:rotate(0deg);
}
100%
{
transform: rotate(360deg);
}
}
.container .ring::before
{
content:'';
position:absolute;
top:12px;
right:12px;
border-radius: 50%;
width:15px;
height:15px;
background:#24ecff;
box-shadow: 0 0 0 5px #24ecff33,
0 0 0 10px #24ecff22,
0 0 0 20px #24ecff11,
0 0 20px #24ecff,
0 0 50px #24ecff;
}
.container .ring:nth-child(2)
{
animation: animate2 4s linear infinite;
animation-delay: -1s;
border-top:4px solid transparent;
border-left:4px solid #93ff2d;
}
.container .ring:nth-child(2):before
{
content:'';
position:absolute;
top:initial;
bottom:12px;
left:12px;
border-radius: 50%;
width:15px;
height:15px;
background:#93ff2d;
box-shadow: 0 0 0 5px #93ff2d33,
0 0 0 10px #93ff2d22,
0 0 0 20px #93ff2d11,
0 0 20px #93ff2d,
0 0 50px #93ff2d;
}
@keyframes animate2
{
0%
{
transform:rotate(360deg);
}
100%
{
transform: rotate(0deg);
}
}
.container .ring:nth-child(3)
{
animation: animate2 4s linear infinite;
animation-delay: -3s;
position:absolute;
top:-66.66px;
border-top:4px solid transparent;
border-left:4px solid #e41cf8;
}
.container .ring:nth-child(3):before
{
content:'';
position:absolute;
top:initial;
bottom:12px;
left:12px;
border-radius: 50%;
width:15px;
height:15px;
background:#e41cf8;
box-shadow: 0 0 0 5px #e41cf833,
0 0 0 10px #e41cf822,
0 0 0 20px #e41cf811,
0 0 20px #e41cf8,
0 0 50px #e41cf8;
}
.container p{
position:absolute;
color:#fff;
font-size:1.5em;
font-family: consolas;
bottom:-100px;
letter-spacing: 0.15em;
}
.{ margin:0; padding: 0; box-sizing: border-box; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background:#111; } .container { position:relative; width:100%; display: flex; justify-content: center; align-items: center; } .container .ring { position:relative; width:150px; height:150px; margin:-30px; border-radius: 50%; border:4px solid transparent; border-top:4px solid #24ecff; animation:animate 4s linear infinite; } @keyframes animate { 0% { transform:rotate(0deg); } 100% { transform: rotate(360deg); } } .container .ring::before { content:''; position:absolute; top:12px; right:12px; border-radius: 50%; width:15px; height:15px; background:#24ecff; box-shadow: 0 0 0 5px #24ecff33, 0 0 0 10px #24ecff22, 0 0 0 20px #24ecff11, 0 0 20px #24ecff, 0 0 50px #24ecff; } .container .ring:nth-child(2) { animation: animate2 4s linear infinite; animation-delay: -1s; border-top:4px solid transparent; border-left:4px solid #93ff2d; } .container .ring:nth-child(2):before { content:''; position:absolute; top:initial; bottom:12px; left:12px; border-radius: 50%; width:15px; height:15px; background:#93ff2d; box-shadow: 0 0 0 5px #93ff2d33, 0 0 0 10px #93ff2d22, 0 0 0 20px #93ff2d11, 0 0 20px #93ff2d, 0 0 50px #93ff2d; } @keyframes animate2 { 0% { transform:rotate(360deg); } 100% { transform: rotate(0deg); } } .container .ring:nth-child(3) { animation: animate2 4s linear infinite; animation-delay: -3s; position:absolute; top:-66.66px; border-top:4px solid transparent; border-left:4px solid #e41cf8; } .container .ring:nth-child(3):before { content:''; position:absolute; top:initial; bottom:12px; left:12px; border-radius: 50%; width:15px; height:15px; background:#e41cf8; box-shadow: 0 0 0 5px #e41cf833, 0 0 0 10px #e41cf822, 0 0 0 20px #e41cf811, 0 0 20px #e41cf8, 0 0 50px #e41cf8; } .container p{ position:absolute; color:#fff; font-size:1.5em; font-family: consolas; bottom:-100px; letter-spacing: 0.15em; }
.{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:#111;
}
.container
{
    position:relative;
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .ring
{
    position:relative;
    width:150px;
    height:150px;
    margin:-30px;
    border-radius: 50%;
    border:4px solid transparent;
    border-top:4px solid #24ecff;
    animation:animate 4s linear infinite;
}
@keyframes animate
{
    0%
    {
        transform:rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.container .ring::before
{
    content:'';
    position:absolute;
    top:12px;
    right:12px;
    border-radius: 50%;
    width:15px;
    height:15px;
    background:#24ecff;
    box-shadow: 0 0 0 5px #24ecff33,
    0 0 0 10px #24ecff22,
    0 0 0 20px #24ecff11,
    0 0 20px #24ecff,
    0 0 50px #24ecff;
}
.container .ring:nth-child(2)
{
    animation: animate2 4s linear infinite;
    animation-delay: -1s;
    border-top:4px solid transparent;
    border-left:4px solid #93ff2d;
}
.container .ring:nth-child(2):before
{
    content:'';
    position:absolute;
    top:initial;
    bottom:12px;
    left:12px;
    border-radius: 50%;
    width:15px;
    height:15px;
    background:#93ff2d;
    box-shadow: 0 0 0 5px #93ff2d33,
    0 0 0 10px #93ff2d22,
    0 0 0 20px #93ff2d11,
    0 0 20px #93ff2d,
    0 0 50px #93ff2d; 
}
@keyframes animate2
{
    0%
    {
        transform:rotate(360deg);
    }
    100%
    {
        transform: rotate(0deg);
    }
}
.container .ring:nth-child(3)
{
    animation: animate2 4s linear infinite;
    animation-delay: -3s;
    position:absolute;
    top:-66.66px;
    border-top:4px solid transparent;
    border-left:4px solid #e41cf8;
}
.container .ring:nth-child(3):before
{
    content:'';
    position:absolute;
    top:initial;
    bottom:12px;
    left:12px;
    border-radius: 50%;
    width:15px;
    height:15px;
    background:#e41cf8;
    box-shadow: 0 0 0 5px #e41cf833,
    0 0 0 10px #e41cf822,
    0 0 0 20px #e41cf811,
    0 0 20px #e41cf8,
    0 0 50px #e41cf8; 
}

.container p{
    position:absolute;
    color:#fff;
    font-size:1.5em;
    font-family: consolas;
    bottom:-100px;
    letter-spacing: 0.15em;
}
相关内容
最新

坚持的力量

wordpress建站,视频剪辑拍摄,动画制作