CSS3 Marquee
by Alex Alex
HTML
<script src="http://leaverou.github.com/prefixfree/prefixfree.js"></script>
<p class="microsoft marquee"><span>Windows 8 and ...</span></p>
CSS
.marquee {
width: 150px;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
background-color: red
}
.marquee span {
display: inline-block;
padding-left: 100%; /* show the marquee just outside the paragraph */
animation: marquee 15s linear infinite;
}
.marquee span:hover {
animation-play-state: paused
}
/* Make it move */
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}