CSS 3 闪烁跳跃的进度条

开发 前端
这个示例的原理和以前的都是一样的,都是通过大量的css3属性来实现的,如:animation、transform、keyframes等等属性。值得注意的是这个示例采用了结构性伪类选择符E:nth-child(n),来进行对HTML元素的选择以及控制输出。

之前为大家分享过一篇关于css3进度条的一篇文章《实现CSS3动态进度条及JQUERY百分比数字显示》,今天为大家带来另一款更具个性化的进度条:CSS3闪烁跳跃的进度条。

flashing-jumping-progress-bar

查看预览  下载附件

这个示例的原理和以前的都是一样的,都是通过大量的css3属性来实现的,如:animation、transform、keyframes等等属性。值得注意的是这个示例采用了结构性伪类选择符E:nth-child(n),来进行对HTML元素的选择以及控制输出。相信这个伪类选择符在将来会是一个很强大的一个工具。推荐大家多多了解以及实践使用。

这个伪类选择符E:nth-child(n)的含义是匹配父元素的第n个子元素E。 例如:ul li:nth-child(3)表示的是选择<ul>元素里面的第3个<li>。提示一下,该属性在IE8(包含IE8)版本以下是不支持的。下面就一起来看看该示例的实现代码吧,完整的代码可下载附件查看。

HTML结构代码

<div class="center"> 
  <ul> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
    <li> 
      <div></div> 
    </li> 
  </ul> 
</div> 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.

CSS样式代码

 @keyframes bump {  
 0% {  
 opacity: 0;  
 left: 535px;  
}  
 100% {  
 left: -10px;  
 opacity: 0;  
}  
 10%85% {  
 opacity: 1;  
}  
}  
 @keyframes spin {  
 0%100% {  
 height20px;  
 top: 50px;  
}  
 50% {  
 height100px;  
 top: 0;  
}  
}  
body {  
    background: rgba(0000.2);  
}  
div.center {  
    text-aligncenter;  
    margin-top40px;  
}  
ul {  
    background-color: rgba(2552552550.4);  
    positionrelative;  
    displayblock;  
    padding0;  
    marginauto;  
    width600px;  
    height10px;  
    list-stylenone;  
    border-radius: 200px;  
    border5px solid rgba(2552552550.2);  
    margin-top100px;  
    box-shadow: 0 0 5px 5px rgba(0000.1);  
}  
ul li {  
    positionabsolute;  
    margin-top-55px;  
}  
ul li:nth-child(1) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.1s;  
}  
ul li:nth-child(1) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.1s;  
    background-color: rgba(1201201200.3);  
}  
ul li:nth-child(2) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.2s;  
}  
ul li:nth-child(2) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.2s;  
    background-color: rgba(120000.3);  
}  
ul li:nth-child(3) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.3s;  
}  
ul li:nth-child(3) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.3s;  
    background-color: rgba(12012000.3);  
}  
ul li:nth-child(4) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.4s;  
}  
ul li:nth-child(4) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.4s;  
    background-color: rgba(012000.3);  
}  
ul li:nth-child(5) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.5s;  
}  
ul li:nth-child(5) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.5s;  
    background-color: rgba(01201200.3);  
}  
ul li:nth-child(6) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.6s;  
}  
ul li:nth-child(6) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.6s;  
    background-color: rgba(001200.3);  
}  
ul li:nth-child(7) {  
    animation: bump 1.5s infinite;  
    animation-delay: 0.7s;  
}  
ul li:nth-child(7) div {  
    border-radius: 22px;  
    transform-origin: center;  
    positionabsolute;  
    height60px;  
    width80px;  
    animation: spin 0.4s infinite;  
    animation-delay: 0.7s;  
    background-color: rgba(12001200.3);  

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.

注:请自行在所需之处加上浏览器前缀(如:-webkit- 、 -moz-),否则将不能正常显示效果。

原文链接:http://www.jiawin.com/flashing-jumping-progress-bar/

责任编辑:张伟 来源: 觉唯
相关推荐

2024-12-02 09:37:51

2015-07-31 11:19:43

数字进度条源码

2023-11-30 11:38:29

CSS网页进度条

2021-11-02 07:44:36

CSS 技巧进度条

2011-07-05 15:16:00

QT 进度条

2024-08-06 14:29:37

2012-12-24 11:13:17

CSSjQueryJavaScript

2024-04-01 08:18:52

CSSHTMLWeb

2015-01-12 12:13:03

Android进度条ProgressDia

2015-08-03 11:39:20

拟物化进度条

2015-01-12 09:30:54

Android进度条ProgressDia

2012-01-17 13:58:17

JavaSwing

2024-07-04 11:25:34

2024-07-25 08:55:47

进度条水缸进度动画效果

2009-06-06 18:54:02

JSP编程进度条

2023-12-11 17:15:05

应用开发波纹进度条ArkUI

2024-06-13 08:15:00

2012-07-31 09:53:33

HTML5进度条

2009-08-17 15:48:47

C# WinForm进

2009-08-17 14:41:47

C#进度条实现
点赞
收藏

51CTO技术栈公众号