css加载动画

一个好的开篇,会给你这个项目增加不少分值。

有没有遇到过打开页面加载一段时间,页面内容才加载出来。在等待加载的过程中页面却是空白页,给用户的体验特别不好,会让项目降一个档次。下面的几种炫酷炸裂的css加载动画,会让你在等待的过程中,体验视觉盛宴,给用户不一般的加载体验,对,就是纯css3的炫酷加载动画,请看效果!

码字不易,且行且珍惜。

1st

css源码
.title{
width: 100%;
text-align: center;
margin:60px 0;
font-size: 18px;
color: #999;
}
.loadingOne{
width: 80px;
height: 40px;
margin: 0 auto;
}
.loadingOne span{
display: inline-block;
width: 8px;
height: 100%;
border-radius: 4px;
background: lightgreen;
-webkit-animation: load 1s ease infinite;
animation: load 1s ease infinite;
}
@-webkit-keyframes load{
0%,100%{
height: 40px;
background: lightgreen;
}
50%{
height: 70px;
margin: -15px 0;
background: lightblue;
}
}
.loadingOne span:nth-child(2){
-webkit-animation-delay:0.2s;
animation-delay:0.2s;
}
.loadingOne span:nth-child(3){
-webkit-animation-delay:0.4s;
animation-delay:0.4s;
}
.loadingOne span:nth-child(4){
-webkit-animation-delay:0.6s;
animation-delay:0.6s;
}
.loadingOne span:nth-child(5){
-webkit-animation-delay:0.8s;
animation-delay:0.8s;
}
html源码

转自https://ttaozhi.com/t/p.html?id=JsvMVj4uWB

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值