我的图像滑块有空白

发布于 2024-12-11 18:36:56 字数 722 浏览 0 评论 0原文

请参阅以下链接, http://www.beta.storeji.in/ 当图像滑动时,下一个图像不会出现,直到滑动完成并且显示空白而不是图像。如何解决这个问题?

这是我的滑块 JavaScript 代码

function slide()
{
    if($('.current').is(':last-child')){
        $('.current').removeClass('current');
        $('#imgholder img:first-child').addClass('current');
        $('#imgholder').animate({left: '0px'});
    }
    else{
        $('.current').removeClass(function(){
            $(this).next().addClass('current');
            return 'current';
        });
        $('#imgholder').animate({left: '-=980'},{duration: 'slow', easing: 'easeOutBounce' });
        }
}
var loop_handle= setInterval("slide()",'5000');

Plz see the following link,
http://www.beta.storeji.in/
when the image slides the next image wont slide appear until the sliding is done and white space is showed instead of image. How to fix this?

this is my slider javascript code

function slide()
{
    if($('.current').is(':last-child')){
        $('.current').removeClass('current');
        $('#imgholder img:first-child').addClass('current');
        $('#imgholder').animate({left: '0px'});
    }
    else{
        $('.current').removeClass(function(){
            $(this).next().addClass('current');
            return 'current';
        });
        $('#imgholder').animate({left: '-=980'},{duration: 'slow', easing: 'easeOutBounce' });
        }
}
var loop_handle= setInterval("slide()",'5000');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千と千尋 2024-12-18 18:36:56

您的 picslider.css 表有错误,宽度和高度设置不正确;

#imgholder{
    position: absolute;
    width: 5880;
    height: 490;
    z-index: 0;
}

解决这个问题,它应该可以正常工作。

已修复。

#imgholder{
    position: absolute;
    width: 5880px;
    height: 490px;
    z-index: 0;
}

You have an error on your picslider.css sheet, the width and height are not properly set;

#imgholder{
    position: absolute;
    width: 5880;
    height: 490;
    z-index: 0;
}

Fix that and it should work fine.

Fixed.

#imgholder{
    position: absolute;
    width: 5880px;
    height: 490px;
    z-index: 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文