jQuery Marquee 是否适用于 jquery 1.6.4?这里有信息http://plugins.jquery.com/marquee/该库可以使用 jquery >=1.6.4。这是我的代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="https://raw.github.com/tobia/Pause/master/jquery.pause.js"></script>
<script src="http://jquery.aamirafridi.com/jquerymarquee/jquery.marquee.js"></script>
<script>
$(function(){
$('#marquee').marquee();
});
</script>
<style type="text/css">
.marquee {
width: 300px;
overflow: hidden;
border:1px solid #ccc;
}
</style>
<body>
<div id='marquee' class='marquee'>Less text here</div>
</body>