CSS loading加载动画(旋转的圆环)
作者:admin 时间:2022-1-19 20:52:17 浏览:CSS loading 加载动画用于程序加载过程中的显示,它的作用是告诉用户程序还在进行中,不要关闭窗口。有些人用GIF图片来设计loading加载画面,本文介绍用纯CSS来实现一个loading加载动画。
HTML
HTML代码十分简单,只有一个div
,div
里也只有一个类属性loader
。
<div class="loader"></div>
CSS
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@-webkit-keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.loader {
border-width: 0.25rem;
border-style: solid;
border-color: gainsboro gainsboro dodgerblue gainsboro;
border-radius: 50%;
display: block;
width: 4rem;
height: 4rem;
-webkit-animation: rotate 1.5s linear infinite;
animation: rotate 1.5s linear infinite;
}
.loader
定义圆边的样式。
animation: rotate 1.5s linear infinite;
这里rotate
意思为旋转,1.5s为每1.5秒完成一次运动,infinite
为循环进行,linear
为动画从头到尾的速度是相同的。
@keyframes rotate
定义圆环的旋转方向和角度。
您可能对以下文章也感兴趣
标签: css-loading 加载动画
相关文章
x
- 站长推荐