<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>字幕滚动实例</title>
<script src="js/jquery-2.2.4.min.js"></script>
<link href="css/02.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>美句欣赏</h1>
<ul>
<li>I love three things in this world. Sun, moon and you. Sun for morning, moon for night , and you forever</li>
<li>There are no trails of the wings in the sky, while the birds has flied away.</li>
<li>Every hour of lost time is a chance of future misfortune.</li>
<li>Learn from yesterday,live for today,hope for to morrow</li>
<li>You know my loneliness is only kept for you, my sweet songs are only sung for you.</li>
</ul>
</body>
</html>
<script>
$("li:last").hide();
setInterval(function(){
$("li:first").slideUp(1000,"linear",function(){
$(this).appendTo("ul");
}).parent().find("li:last").slideDown(1000,"linear");
},1020);
</script>