我有这个正在开发的网站- 我使用以下代码制作了滚动条:
$(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();
});
当最终图像滑过时,有一个白色的空白区域可见,我如何让第一张图像出现在最终图像之后,所以没有空白?
干杯,基思