Created
November 25, 2013 10:39
-
-
Save hsnaydd/7639473 to your computer and use it in GitHub Desktop.
marquee with css3
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
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