0

我有这个正在开发的网站- 我使用以下代码制作了滚动条:

$(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();
});

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

干杯,基思

4

1 回答 1

3

把它分成两部分。当一个人离开底部时,将其移动到另一个人的上方。

于 2009-09-10T02:11:13.707 回答