Created
April 25, 2014 14:58
-
-
Save tbergeron/11292499 to your computer and use it in GitHub Desktop.
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
#main #channels .channels-list-container #container ul.lists { | |
position: absolute; | |
left: 0; | |
top: 0; | |
height: 100%; | |
width: 300%; | |
-webkit-animation: moveSlideshow 360s linear infinite; | |
-moz-animation: moveSlideshow 360s linear infinite; | |
} | |
@-webkit-keyframes moveSlideshow { | |
0% { | |
-webkit-transform: translateX(0); | |
} | |
100% { | |
-webkit-transform: translateX(-300%); | |
} | |
} | |
@-moz-keyframes moveSlideshow { | |
0% { | |
-moz-transform: translateX(0); | |
} | |
100% { | |
-moz-transform: translateX(-300%); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment