Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="shift"></div>
</body>
</html>
 
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}
.shift {
  background-image: repeating-linear-gradient(red, yellow, green, cyan, blue, red 50%);
  background-size: 100% 200%;
  animation: scroll linear 1s infinite;
  width: 100%;
  height: 100%;
}
@keyframes scroll {
  from {
    background-position: center 0%;
  }
  to {
    background-position: center 100%;
  }
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers