<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>loading动画</title>
<style type="text/css">
.box{
width: 300px;
height: 125px;
border: 1px solid #000;
margin: 200px auto 0;
}
.box p{
text-align: center;
width: 100%;
}
.box div{
width: 30px;
height: 70px;
float: left;
background-color: gold;
margin: 15px;
border-radius: 10px;
}
.box div:nth-child(1){
background-color: red;
animation: loading 500ms ease 0s infinite alternate;
}
.box div:nth-child(2){
background-color: chocolate;
animation: loading 500ms ease 100ms infinite alternate;
}
.box div:nth-child(3){
background-color: yellow;
animation: loading 500ms ease 200ms infinite alternate;
}
.box div:nth-child(4){
background-color: green;
animation: loading 500ms ease 300ms infinite alternate;
}
.box div:nth-child(5){
background-color: cyan;
animation: loading 500ms ease 400ms infinite alternate;
}
@keyframes loading{
from{
transform: scaleY(1);
}
to{
transform: scaleY(0.5);
}
}
</style>
</head>
<body>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<p>loading...</p>
</div>
</body>
</html>
作业-loading
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 升级到 xcode9.0 之后使用 安装cocoapods 会出现如下情况: YAML safe loading ...
- loading框至今,github上已经有许许多多大神的作品,扩展性也很强,可以满足大多数使用,不过在有些时候,我...