每天一点css等待页面
程序员文章站
2022-05-01 21:53:07
...
效果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body{
margin: 0;
padding: 0;
background: #34495e;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: "monospace",sans-serif;
}
.loading{
width: 200px;
height: 200px;
box-sizing: border-box;
border-radius: 50%;
border-top: 10px solid #e74c3c;
position: relative;
animation: a1 2s linear infinite;
}
.loading::before,.loading::after{
content: '';
width: 200px;
height: 200px;
position: absolute;
left: 0;
top: -10px;
box-sizing: border-box;
border-radius: 50%;
}
.loading::before{
border-top:10px solid #e67e22;
transform: rotate(120deg);
}
.loading::after{
border-top:10px solid #3498bd;
transform: rotate(240deg);
}
.loading span{
position: absolute;
width: 200px;
height: 200px;
color: #fff;
text-align: center;
line-height: 200px;
animation: a2 2s linear infinite;
}
@keyframes a1 {
to{
transform:rotate(360deg);
}
}
@keyframes a2 {
to{
transform: rotate(-360deg);
}
}
</style>
<script>
/**
*
旋转的div
animation:mymove 1s linear infinite ;
}
@keyframes mymove
{
from {top:0px;}
to {transform:rotate(360deg);}
}
*/
</script>
</head>
<body>
<div class="loading"><span>Loading....</span></div>
</body>
</html>
上一篇: 孙嘉淦到底有多大胆?胆大到了雍正的心坎里
推荐阅读
-
怎么设置才能一点击超链接是一个游戏页面,然后再点击才是想要的页面_html/css_WEB-ITnose
-
css 实现页面加载中等待效果_html/css_WEB-ITnose
-
css 实现页面加载中等待效果_html/css_WEB-ITnose
-
怎么设置才能一点击超链接是一个游戏页面,然后再点击才是想要的页面_html/css_WEB-ITnose
-
每天一点css等待页面
-
用div+css页面布局中的一点点记录_html/css_WEB-ITnose
-
第一次执行jq后页面会往左偏移一点?_html/css_WEB-ITnose
-
第一次执行jq后页面会往左偏移一点?_html/css_WEB-ITnose