Skip to content

Instantly share code, notes, and snippets.

@DevEarley
Created December 18, 2018 01:45
Show Gist options
  • Save DevEarley/e317641e386873f9a6d531c8d5af3cd8 to your computer and use it in GitHub Desktop.
Save DevEarley/e317641e386873f9a6d531c8d5af3cd8 to your computer and use it in GitHub Desktop.
marquee
$scroll-time:15s;
.marquee {
display: inline-block;
padding-left: 100%;
animation: marquee $scroll-time linear infinite;
}
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
@DevEarley
Copy link
Author

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