Skip to content

Instantly share code, notes, and snippets.

@pope
Created December 23, 2015 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pope/b7d9fcdbf6045dc6692c to your computer and use it in GitHub Desktop.
Save pope/b7d9fcdbf6045dc6692c to your computer and use it in GitHub Desktop.
#titlecontent
{
position: absolute;
top: 100%;
transform: translateY(0)
animation: scroll 100s linear 0s infinite;
}
@keyframes scroll {
0% { transform: translateY(0); }
100% { transform: translateY(100%); }
}
@jtmcdole
Copy link

I've removed top and make the keyframes go from 100 to -100 and that seems to work just fine. Just tweaking the start point right now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment