<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" bigboxtent="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: #333;
}
.bigbox {
width: 380px;
height: 270px;
margin: 150px auto 0;
}
.bigbox div {
height: 200px;
width: 24px;
margin: 15px;
float: left;
background: #ddd;
border-radius: 12px;
}
.bigbox p {
text-align: center;
font-size: 18px;
color: #fff;
}
.bigbox .box:nth-child(1) {
background-color: #a12a22;
animation: mymove 500ms ease -600ms infinite alternate;
}
.bigbox .box:nth-child(2) {
background-color: #c52e27;
animation: mymove 500ms ease -500ms infinite alternate;
}
.bigbox .box:nth-child(3) {
background-color: #7d3b79;
animation: mymove 500ms ease -400ms infinite alternate;
}
.bigbox .box:nth-child(4) {
background-color: #3e428b;
animation: mymove 500ms ease -300ms infinite alternate;
}
.bigbox .box:nth-child(5) {
background-color: #1e3a7b;
animation: mymove 500ms ease -200ms infinite alternate;
}
.bigbox .box:nth-child(6) {
background-color: #5598c3;
animation: mymove 500ms ease -100ms infinite alternate;
}
.bigbox .box:nth-child(7) {
background-color: #4eb1d8;
animation: mymove 500ms ease 000ms infinite alternate;
}
@keyframes mymove {
/* 2d缩放 */
from {
transform: scale(1, 0.3);
}
to {
transform: scale(1, 1);
}
}
</style>
</head>
<body>
<div class="bigbox">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<p>LOADING...</p>
</div>
</body>
</html>
CSS实现的Loading样式
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前言 loading作为用户体验中,不可或缺的一环,是前端开发中总能遇到的。一个好看的loading能够让用户在等...
- 今天在强大的MDN web上,看到一个还不错的css样式,从中学习了一些css中以前会忽略的地方,今天分享下 地址...
- 实现:页面没加载完出现的loading蒙层 附上代码 <template> </template> exportd...
- 1、创建一个Loading.vue html JS CSS .loading { text-align: cent...
- 介绍 Loaders.css是Github上一个使用纯粹的css实现的开源loading动画库,完全用CSS编写的...