scar-mix-server/public/public1/lib/loading-animation.css
2019-08-10 09:35:52 +09:00

43 lines
826 B
CSS

/* Styles go here */
.animationStripes{
background-image: repeating-linear-gradient(-45deg, gold, gold 25px, blue 25px, blue 50px);
-webkit-animation:progress 2s linear infinite;
-moz-animation:progress 2s linear infinite;
-ms-animation:progress 2s linear infinite;
animation:progress 2s linear infinite;
background-size: 150% 100%;
}
@-webkit-keyframes progress{
0% {
background-position: 0 0;
}
100% {
background-position: -75px 0px;
}
}
@-moz-keyframes progress{
0% {
background-position: 0 0;
}
100% {
background-position: -75px 0px;
}
}
@-ms-keyframes progress{
0% {
background-position: 0 0;
}
100% {
background-position: -75px 0px;
}
}
@keyframes progress{
0% {
background-position: 0 0;
}
100% {
background-position: -70px 0px;
}
}