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与动画有关的属性transition、animation、transform对比(史上最全版)
Aug 18 HTML / CSS
纯CSS3制作页面切换效果的实例代码
May 30 HTML / CSS
html5/css3响应式页面开发总结
Oct 16 HTML / CSS
HTML5之SVG 2D入门11—用户交互性(动画)介绍及应用
Jan 30 HTML / CSS
5个你不知道的HTML5的接口介绍
Aug 07 HTML / CSS
详解通过HTML5 Canvas实现图片的平移及旋转变化的方法
Mar 22 HTML / CSS
如何避免常见的6种HTML5错误用法
Nov 06 HTML / CSS
HTML5 Web缓存和运用程序缓存(cookie,session)
Jan 11 HTML / CSS
HTML5实现音频和视频嵌入的方法
Aug 22 HTML / CSS
HTML5 input新增type属性color颜色拾取器的实例代码
Aug 27 HTML / CSS
canvas实现滑动验证的实现示例
Aug 11 HTML / CSS
html5实现点击弹出图片功能
Jul 16 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面向对象编程快速入门
2006/10/09 PHP
PHP __autoload()方法真的影响性能吗?
2012/03/30 PHP
浅析php中常量,变量的作用域和生存周期
2013/08/10 PHP
php自定义加密与解密程序实例
2014/12/31 PHP
JS获取各种浏览器窗口大小的方法
2014/01/14 Javascript
jQuery中eq()方法用法实例
2015/01/05 Javascript
JavaScript内存管理介绍
2015/03/13 Javascript
AngularJS的内置过滤器详解
2015/05/14 Javascript
javascript实现的上下无缝滚动效果
2016/09/19 Javascript
EditPlus中的正则表达式 实战(4)
2016/12/15 Javascript
详解网站中图片日常使用以及优化手法
2017/01/09 Javascript
jquery 手势密码插件
2017/03/17 Javascript
jQuery鼠标悬停内容动画切换效果
2017/04/27 jQuery
深入理解vue-loader如何使用
2017/06/06 Javascript
JS检测window.open打开的窗口是否关闭
2017/06/25 Javascript
微信小程序实现点击按钮修改字体颜色功能【附demo源码下载】
2017/12/05 Javascript
纯JS实现出生日期[年月日]下拉菜单效果
2018/06/01 Javascript
Angular2之二级路由详解
2018/08/31 Javascript
基于JQuery实现页面定时弹出广告
2020/05/08 jQuery
[03:10]2014DOTA2 TI马来劲旅Titan首战告捷目标只是8强
2014/07/10 DOTA
Python快速从注释生成文档的方法
2016/12/26 Python
在python下使用tensorflow判断是否存在文件夹的实例
2019/06/10 Python
Python 之 Json序列化嵌套类方式
2020/02/27 Python
在python3.64中安装pyinstaller库的方法步骤
2020/06/02 Python
Django serializer优化类视图的实现示例
2020/07/16 Python
使用OpenCV实现人脸图像卡通化的示例代码
2021/01/15 Python
匡威比利时官网:Converse Belgium
2017/04/13 全球购物
在线吉他课程,学习如何弹吉他:Fender Play
2019/02/28 全球购物
客户经理岗位职责
2013/12/08 职场文书
团组织推优材料
2014/12/29 职场文书
支行行长岗位职责
2015/02/15 职场文书
简历自我评价:教师师德表现自我评价
2019/04/24 职场文书
python xlwt模块的使用解析
2021/04/13 Python
详解Redis基本命令与使用场景
2021/06/01 Redis
Java图书管理系统,课程设计必用(源码+文档)
2021/06/30 Java/Android
为什么RedisCluster设计成16384个槽
2021/09/25 Redis