前言

效果展示

「HTML+CSS」--自定义加载动画【005】-LMLPHP

Demo代码

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">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>

<body>
    <section>
        <span class="loader-1"></span>
    </section>
</body>

</html>

CSS

html,body{
  margin: 0;
  height: 100%;
}
body{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #263238;
}
section {
    width: 650px;
    height: 300px;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid red;
}
.loader-1 {
  width : 96px;
  height: 96px;
  background: orange;
  border: 10px solid #FFF;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}

原理解释

步骤1:生成一个边长为96px的正方形

css代码

 width : 96px;
  height: 96px;
  background: orange;

效果图如下
「HTML+CSS」--自定义加载动画【005】-LMLPHP
「HTML+CSS」--自定义加载动画【005】-LMLPHP

步骤2:设置该正方形的border

css代码

border: 10px solid #FFF;

效果图如下
「HTML+CSS」--自定义加载动画【005】-LMLPHP
「HTML+CSS」--自定义加载动画【005】-LMLPHP

  • 橙色部分还是96px✖️96px,因为border宽度为10px,所以使得span实际大小为116✖️116px

步骤3:设置下边框为红色(重点!)

css代码

 border-bottom-color: #FF3D00;//设置下边框颜色

效果图如下
「HTML+CSS」--自定义加载动画【005】-LMLPHP

步骤4:设置border-radious=50%,将正方形变成圆形

「HTML+CSS」--自定义加载动画【005】-LMLPHP

步骤5:设置动画,绕中心一直旋转

css代码

animation: rotation 1s linear infinite;
// 动画实现
@keyframes rotation {
  0% {
  	transform: rotate(0deg)
  }
  100% {
  	transform: rotate(360deg)
  }
}

效果图如下

「HTML+CSS」--自定义加载动画【005】-LMLPHP

结语

学习来源:

css只会一点点,学习之余从喜欢看一些大神级别的css效果展示,根据源码一点一点学习知识点,文中有不对的地方,欢迎指出~

「HTML+CSS」--自定义加载动画【005】-LMLPHP

04-04 18:03