css3實現的loadding旋轉載入效果

admin發表於2017-02-24
分享一段程式碼例項,使用css3實現了旋轉loadding載入效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.d1 {
  width: 100px;
  margin: 100px auto;
}
[data-load='circle'] {
  width: 25px;
  height: 25px;
  border: 2px solid #f23;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 55%;
  -webkit-animation: circle infinite .75s linear;
  animation: circle infinite .75s linear;
}
@-webkit-keyframes circle {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle {
  100% {
    transform: rotate(360deg);
  }
}
</style>
</head>
<body>
<div class="d1" data-load="circle"></div>
</body>
</html>

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

相關閱讀:

(1).border-radius可以參閱CSS3 border-radius一章節。

(2).animation可以參閱CSS3 animation一章節。

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

(4).transform可以參閱CSS3 transform一章節。

相關文章