1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.css

101 lines
1.8 KiB
CSS
Raw Normal View History

2016-06-17 17:25:15 +08:00
.static {
2018-03-31 03:30:30 +08:00
width: 100%;
height: 100%;
background-color: #bbbbbb;
color: #7f7f7f;
font-size: 50px;
2016-06-17 17:25:15 +08:00
}
.static span {
2018-05-16 09:30:41 +08:00
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
left: 50%;
display: table;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid {
2018-03-31 03:30:30 +08:00
width: 100%;
height: 100%;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid .sk-cube {
2018-03-31 03:30:30 +08:00
width: calc(100% / 3);
height: calc(100% / 3);
background-color: #bbbbbb;
float: left;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube {
2018-03-31 03:30:30 +08:00
-webkit-animation: sk-cubeGridScaleDelay 4.6s infinite ease-in-out;
animation: sk-cubeGridScaleDelay 4.6s infinite ease-in-out;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube1 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube2 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube3 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube4 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube5 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube6 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube7 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0s;
animation-delay: 0s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube8 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
2016-06-17 17:25:15 +08:00
}
.sk-cube-grid.animate .sk-cube9 {
2018-03-31 03:30:30 +08:00
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
2016-06-17 17:25:15 +08:00
}
@-webkit-keyframes sk-cubeGridScaleDelay {
2018-03-31 03:30:30 +08:00
0%, 70%, 100% {
-webkit-transform: scale3D(1, 1, 1);
transform: scale3D(1, 1, 1);
}
35% {
-webkit-transform: scale3D(0, 0, 1);
transform: scale3D(0, 0, 1);
}
2016-06-17 17:25:15 +08:00
}
@keyframes sk-cubeGridScaleDelay {
2018-03-31 03:30:30 +08:00
0%, 70%, 100% {
-webkit-transform: scale3D(1, 1, 1);
transform: scale3D(1, 1, 1);
}
35% {
-webkit-transform: scale3D(0, 0, 1);
transform: scale3D(0, 0, 1);
}
2016-06-17 17:25:15 +08:00
}