如何隐藏 - >移动 - >显示 - >循环中的元素?

时间:2011-09-26 11:30:28

标签: jquery

$parent.animate({'left': '-='+parentLeft+'px'}, options.speed, options.easing, function(){
if(slideLoop){
$parent.css('left', '-'+getSlidePosition(currentSlide, 'left')+'px');
}

我需要按顺序为$ parent设置动画:hide - >移动 - >显示 - > 我需要适应上面的代码。

它已经移动了......

1 个答案:

答案 0 :(得分:0)

你可以使用

$('#parent').hide() 

$('#parent').show() 

移动代码之前和之后的方法