@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
#animate-area {
width: 560px;
height: 400px;
background-image: url(bg-clouds.png);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 40s linear infinite;
}
@-webkit-keyframes animatedBackground {/* ... */}
@keyframes animatedBackground {/* ... */}
#animate-area {
/* ... */
-webkit-animation: animatedBackground 40s linear infinite;
animation: animatedBackground 40s linear infinite;
}