用CSS3实现动画进度条
最后更新于:2022-04-01 19:42:43
CSS3的新特性为我们实现漂亮的进度条扫清了障碍,我们可以完全不需要任何图片和简单的Javascript代码就可以构建。
**一、第一个例子**
效果图:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd982f66.gif)
Demo地址:[http://namepk.sinaapp.com/demo/progress.html](http://namepk.sinaapp.com/demo/progress.html)。
1、 基本的HTML
HTML代码非常简单:
~~~
~~~
loading-status表示外层的容器,precent表示进度条。
2、 CSS代码
~~~
#loading-status { width: 300px; border: 1px #669CB8 solid; -webkit-box-shadow: 0px 2px 2px #D0D4D6; height: 15px; -webkit-border-radius: 10px; background: -webkit-gradient(linear, 0 0, 0 100%, from(#E1E9EE), to(white)); padding: 1px;}
~~~
我们为外层容器添加了边框、圆角、阴影和渐变背景,效果如下图所示:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd994dad.gif)
进度条的CSS代码如下:
~~~
#process { background: -webkit-gradient(linear, 0 0, 0 100%, from(#7BC3FF), color-stop(0.5,#42A9FF), to(#7BC3FF)); width: 0%; height: 100%; -webkit-border-radius: 10px;}
~~~
将width修改为10%可以看到效果:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd9a8621.gif)
3、动画
通过控制width的百分比就可以控制进度条的显示,动画用CSS3的animation或者transition都可以实现,这里我们选择animation:
~~~
#process { background: -webkit-gradient(linear, 0 0, 0 100%, from(#7BC3FF), color-stop(0.5,#42A9FF), to(#7BC3FF)); width: 0%; height: 100%; -webkit-border-radius: 10px; -webkit-transition: width 1s ease-in-out;}
~~~
然后我们通过Javascript来控制precent元素的宽度就可以实现进度条的动画效果了:
~~~
Jquery: $(‘#precent’).width(‘80%’)Javascript: document.getElementById(‘precent’).style.width = ‘80%’
~~~
**二、第二个例子**
下面我们实现一个更为复杂一点的进度条:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd9ba7fc.gif)
Demo地址:[http://namepk.sinaapp.com/demo/progress.html](http://namepk.sinaapp.com/demo/progress.html)。
1、基本的HTML
~~~
~~~
一共是三个元素。
2、 CSS样式
~~~
.box { height: 20px; position: relative; background: hsl(0, 0%, 35%); -webkit-border-radius: 15px; padding: 6px; -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3); width: 300px; }
~~~
外框样式如下所示:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd9ced72.gif)
~~~
.box > span { display: block; height: 100%; -webkit-border-top-right-radius: 8px; -webkit-border-bottom-right-radius: 8px; -webkit-border-top-left-radius: 15px; -webkit-border-bottom-left-radius: 15px; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #63DE4E), color-stop(1, #34A702)); -webkit-box-shadow: inset 0 2px 9px rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
~~~
基本进度条样式如下所示:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd9e5420.gif)
为内层的span定义的样式如下,主要是设定了一个渐变的背景。
~~~
.animate > span > span { content: ""; position: absolute; top: 0;left: 0;bottom: 0;right: 0; background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent)); z-index: 2; -webkit-border-top-right-radius: 8px; -webkit-border-bottom-right-radius: 8px; -webkit-border-top-left-radius: 20px; -webkit-border-bottom-left-radius: 20px; overflow: hidden; }
~~~
样式如下:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bda04e2e.gif)
我们还需要添加一个属性:
-webkit-background-size: 40px;
现在效果如下图所示:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bda1ce74.gif)
3、 动画
动画我们通过改变background-position来实现。代码如下:
~~~
.animate > span span { content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent)); z-index: 2; -webkit-background-size: 40px; -webkit-animation: move 2s linear infinite; -webkit-border-top-right-radius: 8px; -webkit-border-bottom-right-radius: 8px; -webkit-border-top-left-radius: 20px; -webkit-border-bottom-left-radius: 20px; overflow: hidden; } @-webkit-keyframes move { 0% { background-position: 0 0; } 100% { background-position: 50px 50px; } }
~~~
最终的效果如下:
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bd9ba7fc.gif)
写在最后:由我担任作者的一本HTML5入门书籍正在策划和写作中,大家可以期待一下,呵呵。
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-08-02_57a05bda3ce5b.gif)
';