Skip to content

Instantly share code, notes, and snippets.

@tbergeron
Created April 25, 2014 15:07
Show Gist options
  • Save tbergeron/11292862 to your computer and use it in GitHub Desktop.
Save tbergeron/11292862 to your computer and use it in GitHub Desktop.
#main #channels .channels-list-container #container ul.lists {
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
-webkit-animation: moveSlideshow 360s linear infinite;
-moz-animation: moveSlideshow 360s linear infinite;
}
#main #channels .channels-list-container #container ul.lists li {
display: inline-block;
width: 100px;
height: 100px;
}
@-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