Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active August 29, 2015 13:57
Show Gist options
  • Save flexbox/9863217 to your computer and use it in GitHub Desktop.
Save flexbox/9863217 to your computer and use it in GitHub Desktop.
[css] - header backgound animate
.header-image {
animation: 35s linear 0s normal none infinite movebg;
background: url("/playground/uploads/upload/upload/289/bkgd3.jpg") repeat scroll 0 0 rgba(0, 0, 0, 0);
margin-top: -80px;
padding-bottom: 7em;
padding-top: 160px;
}
@-moz-keyframes movebg {
0% {
background-position: 0 0;
}
100% {
background-position: 1260px 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment