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 background属性调整增强介绍
Dec 18 HTML / CSS
css3+jq创作含苞待放的荷花
Feb 20 HTML / CSS
使用CSS3制作一个简单的Chrome模拟器
Jul 15 HTML / CSS
CSS3中新增的对文本和字体的设置
Feb 03 HTML / CSS
基于ccs3的timeline时间线实现方法
Apr 30 HTML / CSS
html5 Canvas画图教程(7)—canvas里画曲线之quadraticCurveTo方法
Jan 09 HTML / CSS
深入理解HTML的FormData对象
May 17 HTML / CSS
HTML5头部标签的一些常用信息小结
Oct 23 HTML / CSS
详解html5 postMessage解决跨域通信的问题
Aug 17 HTML / CSS
html5使用window.postMessage进行跨域实现数据交互的一次实战
Feb 24 HTML / CSS
如何使用 resize 实现图片切换预览功能
Aug 23 HTML / CSS
微信小程序纯CSS实现无限弹幕滚动效果
Sep 23 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 运行效率总结(提示程序速度)
2009/11/26 PHP
PHP连接SQLSERVER 注意事项(附dll文件下载)
2012/06/28 PHP
浅析PHP中的字符串编码转换(自动识别原编码)
2013/07/02 PHP
PHP与以太坊交互详解
2018/08/24 PHP
JavaScript this 深入理解
2009/07/30 Javascript
JS链式调用的实现方法
2013/03/07 Javascript
jquery中ajax函数执行顺序问题之如何设置同步
2014/02/28 Javascript
Jquery实现$.fn.extend和$.extend函数
2016/04/14 Javascript
浅析javascript异步执行函数导致的变量变化问题解决思路
2016/05/13 Javascript
EasyUI学习之DataGird分页显示数据
2016/12/29 Javascript
thinkphp标签实现bootsrtap轮播carousel实例代码
2017/02/19 Javascript
React Native 截屏组件的示例代码
2017/12/06 Javascript
vue.js计算属性computed用法实例分析
2018/07/06 Javascript
利用原生JavaScript实现造日历轮子实例代码
2019/05/08 Javascript
使用 webpack 插件自动生成 vue 路由文件的方法
2019/08/20 Javascript
微信小程序左滑删除实现代码实例
2019/09/16 Javascript
python subprocess 杀掉全部派生的子进程方法
2017/01/16 Python
TensorFlow变量管理详解
2018/03/10 Python
tensorflow识别自己手写数字
2018/03/14 Python
Python处理命令行参数模块optpars用法实例分析
2018/05/31 Python
python3监控CentOS磁盘空间脚本
2018/06/21 Python
程序员写Python时的5个坏习惯,你有几条?
2018/11/26 Python
pytorch构建多模型实例
2020/01/15 Python
解决tensorflow添加ptb库的问题
2020/02/10 Python
python IDLE添加行号显示教程
2020/04/25 Python
Python实现CAN报文转换工具教程
2020/05/05 Python
3个CCIE对一个工程师的面试题
2012/05/06 面试题
医药营销个人求职信范文
2014/02/07 职场文书
建筑专业毕业生求职信
2014/09/30 职场文书
道歉信范文
2015/05/12 职场文书
红色故事汇观后感
2015/06/18 职场文书
百日宴上的祝酒词
2015/08/10 职场文书
小学班主任工作随笔
2015/08/15 职场文书
2019各种承诺书范文
2019/06/24 职场文书
WordPress多语言翻译插件 - WPML使用教程
2021/04/01 PHP
python中的plt.cm.Paired用法说明
2021/05/31 Python