.skeleton {
background-color: #eee;
background-image: linear-gradient(
90deg,
#eee 0px,
#f5f5f5 40px,
#eee 80px
);
background-size: 600px;
animation: shine 1.6s infinite linear;
}
@keyframes shine {
0% { background-position: -100px; }
40%, 100% { background-position: 140px; }
}