Last active
August 29, 2015 13:57
-
-
Save flexbox/9863217 to your computer and use it in GitHub Desktop.
[css] - header backgound animate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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