我想做这样的事情:http://javascript.about.com/library/blcmarquee1.htm
我引用的脚本似乎有点滞后(过时?),所以我想知道是否有人知道更好的解决方案。 (jQuery解决方案欢迎。)
答案 0 :(得分:33)
刚发现这个 - jQuery驱动,并有图像。我打算将它用于当前项目。
http://logicbox.net/jquery/simplyscroll/
更新:我现在在生产代码中使用了它。该插件能够非常流畅地循环70 + 150×65px图像 - 我尝试过的其他一些插件都失败了。
注意它在IE 6/7中对z-index
问题造成了严重破坏并且没有出现等等 - 但这也可能部分归因于我的CSS。对于在IE中根本没有出现问题的任何人,请查看标准的IE z-index
修正:http://www.google.com/search?q=ie+z+index+issues
最新更新: 在实现这些插件时需要考虑的事项:
我现在也发现这两个滚动插件也非常好。
答案 1 :(得分:7)
答案 2 :(得分:3)
只是一个想法。你能做这样的事吗。
<style type="text/css">
.imgwindow{
width:500px; //or whatever
height:65px; //or whatever
position:relative;
overflow:hidden;
}
.imgholder{
min-width:2000px;
height:65px;
position:absolute;
left:-200px;
}
.inline-image{
display:inline-block;
}
</style>
<script type="text/javascript">
var img;
function imgScroll(){
img = $(".inline-image").first();
img.animate({width:0},2500,'linear',function(){
img.remove();
$(".imgholder").append(img);
imgScroll();
});
}
$(document).ready(function(){
imgScroll();
});
</script>
和html
<div class="imgwindow">
<div class="imgholder">
<img class="inline-image" src="image1" /><img class="inline-image" src="image2" />...
</div>
</div>