var left = 500;
var styleStr = `
.progress {
-webkit-animation-name: progress;
animation-name: progress;
width:200px;
height:200px;
background:green;
z-index:9999;
position:absolute
}
@keyframes progress {
0% {
left:${left}px;
top:10px;
}
10%,
20% {
left:100px;
top:10px;
}
30%,
50%,
70%,