Try this (demo)
header {
background: url(http://subtlepatterns.com/patterns/food.png);
width: 100%;
height: 300px;
animation: animatedBackground 5s linear infinite;
-webkit-animation-play-state:paused;
-moz-animation-play-state:paused;
-o-animation-play-state:paused;
animation-play-state:paused;
&:hover {
-webkit-animation-play-state:running;
-moz-animation-play-state:running;
-o-animation-play-state:running;
animation-play-state:running;
}
}
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}