HTML5+CSS3做一个简单又好看的加载动画效果,一个三色圆环转动,再加圆环内部文字转动,效果虽然简单,但第一次看到还是很惊艳的,最主要一点,代码真的超简单的。
效果:
源码:
<!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/16.css">
</head>
<body>
<div class="loading">
<span>拼命加载中</span>
</div>
</body>
</html>
*{
/* 初始化 取消页面内外边距 */
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);
}
}