Last active
July 14, 2017 18:38
-
-
Save jonnymaceachern/794e807a009de31a73e32618cfb6b664 to your computer and use it in GitHub Desktop.
Infinite scrolling image via CSS
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
.logo-carousel { | |
height: 165px; | |
margin-bottom: 30px; | |
background-image: url("logos.png"); | |
width: 3000px; | |
background-repeat: repeat; | |
background-size: contain; | |
animation: bg-slide 170s linear infinite; | |
} | |
@keyframes bg-slide { | |
from { | |
background-position: 0 0; | |
} | |
to { | |
background-position: -3000px 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment