CSS3 Marquee

HTML

<script src="http://leaverou.github.com/prefixfree/prefixfree.js"></script>
<p class="microsoft marquee"><span>Please move your mouse on to the text to start the marquee. When you move the mouse out, the marquee will stop.
</span></p>

CSS

/* Make it a marquee */
.marquee {
    width: 450px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px green solid;
}

.marquee span {
    display: inline-block;
    text-indent: 0;
    border: 1px red solid;
    background: url(http://cl.ly/9BJG/collage.jpg);
    height: 200px;
    animation: marquee 15s linear infinite;
    animation-play-state: paused;
}
.marquee span:hover {
    animation-play-state: running;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}