Created
December 24, 2013 03:28
-
-
Save mongoltolbo/8108420 to your computer and use it in GitHub Desktop.
css3 marquee
This file contains 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
<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