Created
December 18, 2018 01:45
-
-
Save DevEarley/e317641e386873f9a6d531c8d5af3cd8 to your computer and use it in GitHub Desktop.
marquee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to Thomas B - https://codepen.io/thomasbormans/pen/EjMBqO