CSS3实现的闪烁跳跃进度条示例(附源码)


Posted in HTML / CSS onAugust 19, 2013

这个示例的原理是通过大量的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)版本以下是不支持的。

建议开发童鞋使用跨平台开发工具——统一开发环境UDE来进行查看、调试、开发哦~~它是一款HTML5跨平台一站式应用开发、调试和部署工具, 支持HTML5跨平台开发,原Java跨平台插件支持Android/Symbian/Kjava的跨平台和原生开发,为开发者提供丰富的应用模板、示例代码及开发者社区服务,已覆盖Android、iOS、WP、Symbian、Kjava操作系统平台。

UDE模拟器调试效果图:
CSS3实现的闪烁跳跃进度条示例(附源码) 
CSS3实现的闪烁跳跃进度条示例(附源码)
下面就一起来看看该示例的实现代码吧。完整代码下载请见附件。

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>

CSS样式代码
复制代码
代码如下:

@keyframes bump {
0% {
opacity: 0;
left: 535px;
}
100% {
left: -10px;
opacity: 0;
}
10%, 85% {
opacity: 1;
}
}
@keyframes spin {
0%, 100% {
height: 20px;
top: 50px;
}
50% {
height: 100px;
top: 0;
}
}
body {
background: rgba(0, 0, 0, 0.2);
}
div.center {
text-align: center;
margin-top: 40px;
}
ul {
background-color: rgba(255, 255, 255, 0.4);
position: relative;
display: block;
padding: 0;
margin: auto;
width: 600px;
height: 10px;
list-style: none;
border-radius: 200px;
border: 5px solid rgba(255, 255, 255, 0.2);
margin-top: 100px;
box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}
ul li {
position: absolute;
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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.1s;
background-color: rgba(120, 120, 120, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.2s;
background-color: rgba(120, 0, 0, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.3s;
background-color: rgba(120, 120, 0, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.4s;
background-color: rgba(0, 120, 0, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.5s;
background-color: rgba(0, 120, 120, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.6s;
background-color: rgba(0, 0, 120, 0.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;
position: absolute;
height: 60px;
width: 80px;
animation: spin 0.4s infinite;
animation-delay: 0.7s;
background-color: rgba(120, 0, 120, 0.3);
}

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

源码下载请见附件
CSS3实现的闪烁跳跃进度条示例(附源码) 
闪烁跳跃进度条.rar (1.6 KB)

HTML / CSS 相关文章推荐
CSS3使用多列制作瀑布流
May 10 HTML / CSS
CSS3 :nth-child()伪类选择器实现奇偶行显示不同样式
Nov 05 HTML / CSS
css3 中的新特性加强记忆详解
Apr 16 HTML / CSS
关于css中margin的值和垂直外边距重叠问题
Oct 27 HTML / CSS
详解Canvas 实现炫丽的粒子运动效果(粒子生成文字)
Feb 01 HTML / CSS
浅谈three.js中的needsUpdate的应用
Nov 12 HTML / CSS
HTML5计时器小例子
Oct 15 HTML / CSS
HTML5 LocalStorage 本地存储刷新值还在
Mar 10 HTML / CSS
html5写一个BUI折叠菜单插件的实现方法
Sep 11 HTML / CSS
使用canvas实现黑客帝国数字雨效果
Jan 02 HTML / CSS
基于html5 canvas做批改作业的小插件
May 20 HTML / CSS
萌新HTML5 入门指南(二)
Nov 09 HTML / CSS
css3实现背景图片拉伸效果像桌面壁纸一样
Aug 19 #HTML / CSS
发现两个有趣的CSS3动画效果
Aug 14 #HTML / CSS
纯CSS3制作的简洁蓝白风格的登录模板(非IE效果更好)
Aug 11 #HTML / CSS
CSS3正方体旋转示例代码
Aug 08 #HTML / CSS
CSS3 透明色 RGBA使用介绍
Aug 06 #HTML / CSS
实现CSS3中的border-radius(边框圆角)示例代码
Jul 19 #HTML / CSS
CSS3 实用技巧:实现黑白图像效果示例代码
Jul 11 #HTML / CSS
You might like
PHP语法自动检查的Vim插件
2014/08/11 PHP
PHP中使用curl入门教程
2015/07/02 PHP
Yii2.0 模态弹出框+ajax提交表单
2016/05/22 PHP
javascript内存管理详细解析
2013/11/11 Javascript
js中一维数组和二位数组中的几个问题示例说明
2014/07/17 Javascript
JavaScript AJAX之惰性载入函数
2014/08/27 Javascript
JS定义网页表单提交(submit)的方法
2015/03/20 Javascript
jQuery实现的超酷苹果风格图标滑出菜单效果代码
2015/09/16 Javascript
jquery使用Cookie和JSON记录用户最近浏览历史
2016/04/19 Javascript
JS判断日期格式是否合法的简单实例
2016/07/11 Javascript
利用JavaScript实现拖拽改变元素大小
2016/12/14 Javascript
JavaScript获取ul中li个数的方法
2017/02/13 Javascript
如何以Angular的姿势打开Font-Awesome详解
2018/04/22 Javascript
小程序云开发初探(小结)
2018/10/24 Javascript
通过vue刷新左侧菜单栏操作
2020/08/06 Javascript
vue中watch和computed的区别与使用方法
2020/08/23 Javascript
react ant Design手动设置表单的值操作
2020/10/31 Javascript
浅谈Python中copy()方法的使用
2015/05/21 Python
python如何实现excel数据添加到mongodb
2015/07/30 Python
Python 的内置字符串方法小结
2016/03/15 Python
使用Nginx+uWsgi实现Python的Django框架站点动静分离
2016/03/21 Python
python解决方案:WindowsError: [Error 2]
2016/08/28 Python
django 自定义filter 判断if var in list的例子
2019/08/20 Python
python验证码图片处理(二值化)
2019/11/01 Python
python3.6、opencv安装环境搭建过程(图文教程)
2019/11/05 Python
Python字典深浅拷贝与循环方式方法详解
2020/02/09 Python
使用python将微信image下.dat文件解密为.png的方法
2020/11/30 Python
用python读取xlsx文件
2020/12/17 Python
pyspark对Mysql数据库进行读写的实现
2020/12/30 Python
同学会主持词
2014/03/18 职场文书
股东协议书范本
2014/04/14 职场文书
2015年秋季新学期寄语
2015/03/25 职场文书
员工升职自荐信
2015/03/27 职场文书
2015年收银工作总结范文
2015/04/01 职场文书
讲座新闻稿
2015/07/18 职场文书
python迷宫问题深度优先遍历实例
2021/06/20 Python