css3實現旋轉loadding載入效果

antzone發表於2017-03-11

分享一段程式碼例項,它實現了旋轉的loadding載入效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35px;
  height: 35px;
  border: 2px solid #696969;
  border-radius: 35px;
  border-color: #696969 #696969 #696969 transparent;
  animation: abc 1s linear infinite;
}
@keyframes abc {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}
</style>
</head>
<body>
  <div></div>
</body>
</html>

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

相關閱讀:

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

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

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

相關文章