css3實現的方塊迴圈翻滾跳動效果

antzone發表於2017-03-23

分享一段程式碼例項,它利用css3實現了方塊迴圈翻滾跳動效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#colorLoading {
  margin:100px;
}
/*彩色方塊loading*/
@keyframes color {
  0% {
    transform: scale(.7) rotate(0deg);
    top: 0px;
    opacity: .5;
  }
  50% {
    transform: scale(.5) rotate(180deg);
    top: -20px;
    opacity: 1;
  }
  100% {
    transform: scale(.7) rotate(360deg);
    top: 0px;
    opacity: .5;
  }
}
#colorLoading span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  opacity: .5;
  position: relative;
}
#colorLoading span:nth-child(1) {
  background: #67B168;
  animation: color 1.2s infinite;
}
#colorLoading span:nth-child(2) {
  background: burlywood;
  animation: color 1.2s .2s infinite;
}
#colorLoading span:nth-child(3) {
  background: #5BC0DE;
  animation: color 1.2s .4s infinite;
}
#colorLoading span:nth-child(4) {
  background: #CE8483;
  animation: color 1.2s .6s infinite;
}
</style>
</head>
<body>
  <div id="colorLoading">
    <span></span>
    <span></span>
    <span></span>
    <span></span>
  </div>
</body>
</html>

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

相關閱讀:

(1).@keyframes可以參閱CSS3 @keyframes一章節。

(2).transform可以參閱CSS3 transform屬性一章節。

(3).opacity可以參閱CSS opacity屬性一章節。

(4).position可以參閱css position定位詳解一章節。

(5).:nth-child可以參閱nth-child() 一章節。

相關文章