<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box{
width: 300px;
height: 30px;
border: 1px solid black;
margin: 100px auto;
background-image: linear-gradient( to right top,#999 25%,#080 25%,#080 50%,#999 50%,#999 75%,#080 75% );
background-size: 30px;
animation: move infinite 3s linear;
}
@keyframes move{
0%{background-position:0 0;}
100%{background-position:300px 0;}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>