CSS3圓形漸隱漸現迴圈出現

antzone發表於2018-05-22

分享一段程式碼例項,它實現了圓形漸隱漸現迴圈出現效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0px;
  padding: 0px;
}
.Load {
  margin: auto;
  margin-top: 200px;
  width: 240px;
  height: 20px;
  padding: 5px;
}
.Load div {
  float: left;
  margin: 0 10px;
  width: 20px;
  height: 20px;
  background: #F95F4A;
  border-radius: 50%;
}
@keyframes myfirst1 {
  90% {
    background: #fff;
  }
}
@keyframes myfirst2 {
  90% {
    background: #fff;
  }
}
@keyframes myfirst3 {
  90% {
    background: #fff;
  }
}
@keyframes myfirst4 {
  90% {
    background: #fff;
  }
}
@keyframes myfirst5 {
  90% {
    background: #fff;
  }
}
@keyframes myfirst6 {
  90% {
    background: #fff;
  }
}
.Dot1 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 0.3s;
}
.Dot2 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 0.6s;
}
.Dot3 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 0.9s;
}
.Dot4 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 1.2s;
}
.Dot5 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 1.5s;
}
.Dot6 {
  animation: myfirst1 1.8s infinite;
  animation-delay: 1.8s;
}
</style>
</head>
<body>
  <div class="Load">
    <div class="Dot1"></div>
    <div class="Dot2"></div>
    <div class="Dot3"></div>
    <div class="Dot4"></div>
    <div class="Dot5"></div>
    <div class="Dot6"></div>
  </div>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容參閱相關閱讀。

相關閱讀:

(1).border-radius參閱CSS3 border-radius圓角一章節。

(2).@keyframes參閱CSS3 @keyframes一章節。

(3).animation參閱CSS3 animation一章節。

(4).animation-delay參閱CSS3 animation-delay一章節。

相關文章