
<!DOCTYPE html>
<html>
<head>
<title>跑马灯</title>
<style type="text/css">
.marquee {
width: 300px;
overflow: hidden;
white-space: nowrap;
background: #F00;
}
.marquee span {
display: inline-block;
padding-left: 100%;
text-indent: 0;
animation: marquee 15s linear infinite;
background: #FFF;
}
@keyframes marquee{
0% {transform: translate(0, 0);}
100% {transform: translate(-100%, 0);}
}
</style>
</head>
<body>
<div class="marquee">
<span>Hello World!</span>
</div>
</body>
</html>


