Skip to content

Instantly share code, notes, and snippets.

@mongoltolbo
Created December 24, 2013 03:28
Show Gist options
  • Save mongoltolbo/8108420 to your computer and use it in GitHub Desktop.
Save mongoltolbo/8108420 to your computer and use it in GitHub Desktop.
css3 marquee
<p class='marquee'>wow css3 marquee fun!</p>
p.marquee{
-webkit-animation-name: marquee;
-webkit-animation-timing-function: linear;
-webkit-animation-duration:10s;
-webkit-animation-iteration-count: infinite;
margin: 0;
padding: 0;
overflow: hidden;
display: block;
white-space: nowrap;}
@-webkit-keyframes marquee{
0%{text-indent: 95%;}
100%{ text-indent: -20%; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment