如何使用JQuery进行连续滚动?

时间:2009-09-10 02:07:10

标签: javascript jquery scroll slider

我有this site I am developing - 我使用以下代码制作了滚动条:

$(document).ready(function()
{
      function scrollIt()
      {
         $('#featured-brands div#scroll').animate({
            marginLeft: "-4550px"}, 85000, "linear").animate({ 
               marginTop: "-223px" }, 200, "linear").animate({ 
                  marginLeft: "750px" }, 100, "linear").animate({ 
                 marginTop: "57px" }, 1, "linear", scrollIt);
      }
      scrollIt();
});

当最终图像滑过时,有一个可见的白色空白区域,如何让第一张图像出现在最终图像之后,所以没有空格?

干杯, 基思

1 个答案:

答案 0 :(得分:3)

将其分成两部分。当一个人从底部离开时,移动它使它高于另一个。