我的图像滑块有空白
请参阅以下链接, 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 picslider.css 表有错误,宽度和高度设置不正确;
解决这个问题,它应该可以正常工作。
已修复。
You have an error on your picslider.css sheet, the width and height are not properly set;
Fix that and it should work fine.
Fixed.