进度条

直接上代码,很简单可以直接看懂:

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>One Div Mail (Using transition)</title>
<link rel="stylesheet" href="css/style.css"> <style>   main {     width: 100%;     padding: 80px 0;     /*display: flex;*/     flex-wrap: wrap;     justify-content: space-around;    }   .progress-outer {     width: 40%;      height: 25px;     line-height: 25px;     margin-top: 20px;     overflow: hidden;     /*position: relative; */   }       .progress-enter {       height: inherit;     background: rgba(192, 192, 192,.5);    }   .progress-bg {     height: inherit;      background-color: rgba(0,0,255,.5);     background-size: 16px 16px;     -webkit-animation: panoramic 15s linear infinite;     animation: panoramic 15s linear infinite;   }   .pc1{     width: 50%;      background-color: rgba(0,0,255,.5);   }   .pc2{     width: 30%;      background-color: rgba(0,0,0,.5);   }   .pc3{     width: 80%;      background-color: rgba(0,0,128,.5);   }   .pc4{     width: 50%;      background-color: rgba(0,0,255,.5);   } .s1{     margin-bottom: -20px; } </style>
</head> <body> <main> <p class="s1">我的进度条</p>     <div class="progress-outer">
      <div class="progress-enter">         <div class="progress-bg pc1"></div>               </div>     </div> <p class="s1">我的进度条</p>     <div class="progress-outer">       <div class="progress-enter">         <div class="progress-bg pc2"></div>               </div>     </div> <p class="s1">我的进度条</p>     <div class="progress-outer">       <div class="progress-enter">         <div class="progress-bg pc3"></div>               </div>     </div>     <p class="s1">我的进度条</p>     <div class="progress-outer">       <div class="progress-enter">         <div class="progress-bg pc4"></div>               </div>     </div> </main> </body> </html>   效果图如下: 进度条

 

 

 
上一篇:console.log添加样式及图片


下一篇:CSS3—新增UI样式