css3實現的進度條程式碼例項

admin發表於2017-02-11
本章節分享一個程式碼例項,此程式碼是由純css實現的,能夠實現進度條效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body{
  margin:0;
  padding:0;
}
@-moz-keyframes progressing{
  0%{
    width:0px;
  }
  100%{
    width:100%;
  }
}
@-webkit-keyframes progressing{
  0%{
    width:0px;
  }
  100%{
    width:100%;
  }
}
.progress{
  width:100%;
  height:5px;
  overflow:hidden;
  background-color:#27ccc0;
  position:fixed;
  top:0;
  left:0;
  z-index:9;
  animation:progressing 2s ease-out;
  -moz-animation:progressing 2s ease-out;
  -webkit-animation:progressing 2s ease-out;
}
</style>
</head>
<body>
<p class="progress"></p>
</body>
</html>

以上程式碼實現了我們的要求,能夠實現進度條效果,程式碼比較簡單這裡就不多介紹了。

相關文章