我正在尝试创建幻灯片导航。
我的代码:
$('.feeds_text p:visible').hide("slide", { direction: "right" }, 300, function() {
$('#quote_' + currentKey).show("slide", { direction: "left" }, 300)
});
但是这个函数依次执行并且当我们在旋转的两个div之间有白色区域时创建时间。如何同时使用这两个功能?我只需要使用隐藏/显示功能。
答案 0 :(得分:0)
根本不使用回调功能,
如果.stop()
还有班级'#quote_' + currentKey
.feeds_text
$('.feeds_text p:visible').hide("slide", { direction: "right" }, 300);
$('#quote_' + currentKey).stop().show("slide", { direction: "left" }, 300);