「HTML+CSS」--自定義載入動畫【014】【疑問未解決】

海轟Pro發表於2021-04-16

前言

Hello!小夥伴!
首先非常感謝您閱讀海轟的文章,倘若文中有錯誤的地方,歡迎您指出~
哈哈 自我介紹一下
暱稱:海轟
標籤:程式猿一隻|C++選手|學生
簡介:因C語言結識程式設計,隨後轉入計算機專業,有幸拿過國獎、省獎等,已保研。目前正在學習C++/Linux(真的真的太難了~)
學習經驗:紮實基礎 + 多做筆記 + 多敲程式碼 + 多思考 + 學好英語!
日常分享:微信公眾號【海轟Pro】記錄生活、學習點滴,分享一些原始碼或者學習資料,歡迎關注~

效果展示

在這裡插入圖片描述

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></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;
}

span{
  width : 96px;
  height: 96px;
  border: 10px solid ;
  border-color: white white transparent;
  border-radius: 50%; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotation 2s linear infinite;
}
span::before{
  position: relative;
  content: '';
  width:  48px;
  height:  48px;
  border: 10px solid;
  border-color: transparent red red;
  border-radius: 50%;
  /* 注意這裡的時間 */
  animation: rotationback 1s linear infinite;
}

@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)
  }
}
@keyframes rotationback {
  0% { transform: rotate(360deg) }
  100% { transform: rotate(0deg)
  }
}

原理詳解

步驟1

設定span標籤

  • 寬度、長度均為96px
  • 邊框:10px solid

效果圖如下
在這裡插入圖片描述

步驟2

設定span標籤

  • 上/左/右邊框顏色為白色
  • 下邊框為透明
border-color: white white transparent;

效果圖如下
在這裡插入圖片描述

步驟3

設定span::before偽類

  • 寬度、高度均為48px
  • 下/左/右邊框為紅色 10px solid
  • 上邊框為透明
width:  48px;
  height:  48px;
  border: 10px solid;
  border-color: transparent red red;

再設定span標籤為flex佈局,使得span::before位於span正中間(上下左右居中)

  display: flex;
  align-items: center;
  justify-content: center;

效果圖如下
在這裡插入圖片描述

步驟4

span、span::before圓角化

border-radius: 50%;

效果圖如下
在這裡插入圖片描述

步驟5

為span新增動畫

  • 順時針旋轉
animation: rotation 2s linear infinite;
/* 順時針旋轉動畫*/
@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)
  }
}

效果圖如下

在這裡插入圖片描述
注意:此時紅色部分是和白色部分同方向旋轉

步驟6

為span::before新增動畫

  • 逆時針旋轉
/*注意這裡的時間*/
animation: rotationback 1s linear infinite;
@keyframes rotationback {
  0% { transform: rotate(360deg) }
  100% { transform: rotate(0deg)
  }
}

效果圖如下

在這裡插入圖片描述
注意:此時紅色部分和白色部分旋轉方向相反

疑問

問題1

在這裡span動畫是順時針,時間是2s,span::before設定的是逆時針旋轉,時間是1s,但是實際span::before旋轉一週的時間卻是2s???

問題2

在保持span動畫不變的情況下,修改span::before動畫時間分別為1s 、 2s、4s,會出現逆時針 2s、靜止不動、順時針 4s 的情況???

備註:問題暫未解決,還是沒有想明白~

結語

學習來源:

https://codepen.io/bhadupranjal/pen/vYLZYqQ

文章僅作為學習筆記,記錄從0到1的一個過程。希望對您有所幫助,如有錯誤歡迎小夥伴指正~

我是海轟ଘ(੭ˊᵕˋ)੭,如果您覺得寫得可以的話,請點個贊吧

寫作不易,「點贊」+「收藏」+「轉發」

謝謝支援❤️

在這裡插入圖片描述

相關文章