「HTML+CSS」--自定義加載動畫【008】

前言

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

效果展現

在這裏插入圖片描述

Demo代碼

HTMLhtml

<!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 #fff;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotation 1s linear infinite;
}
span::after{
  position: relative;
  content: '';
  display: inline-block;
  width:  72px;
  height:  72px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-bottom-color: #FF3D00;
  border-top-color: #FF3D00;
}
@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)
  }
}

原理解釋

動畫的核心部分就是span和span::after,section僅做爲提示框。微信

步驟1

將span元素設置爲學習

  • 一個96✖️96px的正方形
  • 邊框爲10px,白色,solid
width : 96px;
    height: 96px;
    border: 10px solid #fff;

效果圖以下
在這裏插入圖片描述flex

步驟2

span::after僞元素設置爲:動畫

  • 位於span正中
  • 邊長72✖️72px的正方形

注:紅色部分即爲span::after,爲便於觀察才設置爲紅色
在這裏插入圖片描述ui

步驟3

span::after設置spa

  • 下邊框:10px 紅色 solid
  • 上邊框:10px 紅色 solid
  • 左/右邊框:10px 透明 solid
border: 10px solid transparent;
    border-bottom-color: #FF3D00;
    border-top-color: #FF3D00;

在這裏插入圖片描述

步驟4

span和span::aftercode

  • border-radius均設置爲50%
border-radius: 50%;

效果圖以下

在這裏插入圖片描述

步驟5

爲span添加動畫

animation: rotation 1s linear infinite;
/*動畫實現*/
  @keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg)
    }

效果圖以下

在這裏插入圖片描述

結語

學習來源:

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

主要學會思路,弄清楚效果是如何實現的,而後再根據本身的理解再敲一遍代碼,必定要敲!

文章僅做爲學習筆記,記錄從0到1的一個過程。但願對您有所幫助,若有錯誤歡迎小夥伴指正~

我是海轟ଘ(੭ˊᵕˋ)੭,若是您以爲寫得能夠的話,請點個贊吧

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

謝謝支持❤️

在這裏插入圖片描述

相關文章
相關標籤/搜索