Files
jubaboxweb/wwwjuba/app-assets/css/plugins/loaders/animations/ball-pulse-round.css
T
2019-08-26 13:45:20 -04:00

88 lines
1.9 KiB
CSS

/*========================================================
DARK LAYOUT
=========================================================*/
@-webkit-keyframes ball-pulse-round
{
0%,
80%,
100%
{
-webkit-transform: scale(0);
transform: scale(0);
}
40%
{
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes ball-pulse-round
{
0%,
80%,
100%
{
-webkit-transform: scale(0);
-moz-transform: scale(0);
transform: scale(0);
}
40%
{
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
}
}
@-o-keyframes ball-pulse-round
{
0%,
80%,
100%
{
-webkit-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
}
40%
{
-webkit-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-pulse-round
{
0%,
80%,
100%
{
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
}
40%
{
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
}
.ball-pulse-round > div
{
width: 10px;
height: 10px;
-webkit-animation: ball-pulse-round 1.2s infinite ease-in-out;
-moz-animation: ball-pulse-round 1.2s infinite ease-in-out;
-o-animation: ball-pulse-round 1.2s infinite ease-in-out;
animation: ball-pulse-round 1.2s infinite ease-in-out;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
}