Skip to content

Instantly share code, notes, and snippets.

@tbergeron
Created April 25, 2014 14:58
Show Gist options
  • Save tbergeron/11292499 to your computer and use it in GitHub Desktop.
Save tbergeron/11292499 to your computer and use it in GitHub Desktop.
#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