.animation{
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 450upx !important;
animation: scan 1.5s linear infinite;
}
.anim-list{
width: 100%;
height: 450upx;
background: linear-gradient(to bottom,rgba(216,179,255,0),rgba(216,179,255,1));
position: relative;
top: -600upx;
}
@-webkit-keyframes scan {
0%{
background: linear-gradient(to bottom,rgba(216,179,255,0),rgba(216,179,255,1));
left: 0;top: -600upx;
}
25%{
left: 0;top: 50upx;
}
50%{
left: 0;top: 50upx;
}
75%{
left: 0;top: 50upx;
}
100%{
left: 0;top: -600upx;
}
}