提示:流动的环形加载动画效果,css实现
前言
提示:以下是本篇文章的代码内容,供大家参考,相互学习
一、html代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>好看的加载动画效果</title>
<link rel="stylesheet" href="../css.css">
</head>
<body>
<div class="loading">
<span>拼命加载中</span>
</div>
</body>
</html>
二、css代码
*{
/* 初始化 取消页面内外边距 */
margin: 0;
padding: 0;
}
body{
/* 100%窗口高度 */
height: 100vh;
/* 渐变背景 */
background: linear-gradient(to bottom,#2b5876,#09203f);
/* 弹性布局 水平、垂直居中 */
display: flex;
justify-content: center;
align-items: center;
}
.loading{
width: 200px;
height: 200px;
box-sizing: border-box;
border-radius: 50%;
border-top: 10px solid #63a69f;
/* 相对定位 */
position: relative;
/* 执行动画(动画a1 时长 线性的 无限次播放) */
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 #f2e1ac;
/* 旋转120度 */
transform: rotate(120deg);
}
.loading::after{
border-top: 10px solid #f2836b;
/* 旋转240度 */
transform: rotate(240deg);
}
.loading span{
position: absolute;
width: 200px;
height: 200px;
line-height: 200px;
text-align: center;
color: #fff;
/* 执行动画(动画a2 时长 线性的 无限次播放) */
animation: a2 2s linear infinite;
}
/* 定义动画 */
@keyframes a1{
to{
transform: rotate(360deg);
}
}
@keyframes a2{
to{
transform: rotate(-360deg);
}
}
总结
-
使用通配符选择器
*
来设置全局样式,这里用来取消页面内外边距(margin和padding)。 -
使用
linear-gradient
函数来设置渐变背景,可以设置渐变方向和颜色。 -
使用弹性布局(flexbox)来使元素水平垂直居中,可以通过
display: flex
和justify-content: center
以及align-items: center
来实现。 -
使用绝对定位(
position: absolute
)和相对定位(position: relative
)来控制元素的位置。 -
使用
border-radius
属性设置圆角,可以使用百分比值来创建不同的圆角效果。 -
使用
box-sizing
属性来设置盒模型的大小,可以设置为border-box
或content-box
,这里设置为border-box
。 -
使用
animation
属性来定义动画,可以设置动画名称、时长、时间函数以及播放次数。 -
使用
@keyframes
规则来定义关键帧动画,可以在不同的关键帧中设置不同的样式,以创建不同的动画效果。 -
使用
transform
属性来设置元素的旋转、平移、缩放等变换效果。 -
使用
::before
和::after
伪元素来创建元素的前后内容,可以使用content
属性设置内容。