首页 > 开发 > CSS > 正文

CSS3制作彩色进度条样式的代码示例分享

2024-07-11 08:32:46
字体:
来源:转载
供稿:网友

一、制作静态的紫色条纹进度条
html代码:

XML/HTML Code复制内容到剪贴板
  1. <body>   <div class="progress-bar purple"> <span style="width:40%;"></span> </div>  
  2. </body>  

css代码:

CSS Code复制内容到剪贴板
  1. body {     background-color:#333;   
  2. }    .progress-bar {   
  3.  background-color:#222;     border-radius:3px;   
  4.  width:300px;     height:24px;   
  5.  padding:5px;     margin:50px;   
  6.  border-bottom:1px solid #444;     box-shadow:inset 0 0 2px 0 #000;   
  7. }    .progress-bar span {   
  8.  display:inline-block;     width:140px;   
  9.  height:24px;            border-radius:2px;   
  10.  box-shadow:0 1px 0 rgba(255, 255, 255, 0.5) inset;     -moz-box-shadow:0 1px 0 rgba(255, 255, 255, 0.5) inset;   
  11.  -webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0 inset;    }   
  12. .purple span{     background-color:#F09;   
  13.  background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%);     background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(25%,rgba(255,255,255,0.3)),color-stop(25%,transparent),color-stop(50%,transparent),color-stop(50%,rgba(255,255,255,0.3)),color-stop(75%,rgba(255,255,255,0.3)),color-stop(75%,transparent));   
  14.  background-size:16px 16px;    }  

最终效果如下图所示:
2016623121249918.jpg (340×70)

二、制作静态的蓝色进度条
html代码:

XML/HTML Code复制内容到剪贴板
  1. <div class="progress-bar orange"> <span style="width:60%;"></span> </div>  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表