Skip to content

Instantly share code, notes, and snippets.

@lelandf
Created April 1, 2016 23:23
Show Gist options
  • Save lelandf/56c123d96c8acb954337c88777348554 to your computer and use it in GitHub Desktop.
Save lelandf/56c123d96c8acb954337c88777348554 to your computer and use it in GitHub Desktop.
/* Summon our "marquee" animation and spread it out over 50 seconds, repeating it forever */
.widget_recent_entries ul {
animation: marquee 50s linear infinite;
}
/* Create our "marquee" animation to move the text from right to left */
@keyframes marquee {
0% { transform: translate(100%, 0); }
100% { transform: translate(-100%, 0); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment