如何将delay()与each()一起使用?

发布于 2024-11-19 16:11:48 字数 558 浏览 2 评论 0原文

$("#home #oneTool").prepend($(".userInfo.module"));

var topVal = $(".userInfo.module").height();
$(".userInfo.module").hide();
$(".userInfo.module").slideDown(3000);

$("#home #oneTool div.divspot").each(function(){
   var newVal = topVal + parseInt($(this).css('top'));
   $(this).css('top',newVal);
});

.userInfo.module 出现在所有 div.divspot 之上...

由于我使用的是 SlideDown,因此每个函数都需要延迟,以便 >div.divspot也可以顺利滑落..(延迟会有帮助吗?)

注意:所有div.divspot都是绝对定位的

$("#home #oneTool").prepend($(".userInfo.module"));

var topVal = $(".userInfo.module").height();
$(".userInfo.module").hide();
$(".userInfo.module").slideDown(3000);

$("#home #oneTool div.divspot").each(function(){
   var newVal = topVal + parseInt($(this).css('top'));
   $(this).css('top',newVal);
});

The .userInfo.module is present above all div.divspots...

Since i'm using slideDown, the each function needs to be delayed, so that the div.divspots could also slidedown smoothly.. (will delay be helpful?)

Note: All div.divspots are absolutely positioned

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

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

发布评论

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

评论(2

过期以后 2024-11-26 16:11:48

首先,slideDown 将一个函数作为参数,在完成后调用该函数。 http://api.jquery.com/slideDown/

支持另一个意识到你在问什么的回答者以及我没有正确阅读你的问题的#fail。

话虽这么说,对于完成后没有回调的方法,这里有几个选项。

两个选项:

  1. 使用队列
  2. 使用 setTimeout

使用队列:

http://api.jquery.com/queue/

$(".userInfo.module").fooThatTakes(3000).queue(function() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
});

使用setTimeout。

var delay = 3000;
$(".userInfo.module").fooThatTakes(delay);
t = setTimeout(afterFoo, delay);

function afterFoo() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
}

Well first of all, slideDown takes as a parameter a function to call after it's done. http://api.jquery.com/slideDown/

Props to another answerer who realized what you were asking and a #fail to me for not reading your question properly.

That being said, for a method that does not have a callback after completion, here are a couple of options.

Two options:

  1. Use queue
  2. Use setTimeout

Use queue:

http://api.jquery.com/queue/

$(".userInfo.module").fooThatTakes(3000).queue(function() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
});

Use setTimeout.

var delay = 3000;
$(".userInfo.module").fooThatTakes(delay);
t = setTimeout(afterFoo, delay);

function afterFoo() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
}
云淡月浅 2024-11-26 16:11:48

如果我正确理解了您的问题,那么您希望在 slideDown 完成后运行您的 each 函数。如果这是正确的,那么您可以使用 slideDown 函数的回调:

$(".userInfo.module").slideDown(3000, function() {
    //Your each function
});

回调将在动画完成时运行。

If I've understood your question correctly, then you want to run your each function after the slideDown is complete. If that's right, then you can use a callback to the slideDown function:

$(".userInfo.module").slideDown(3000, function() {
    //Your each function
});

The callback will run upon completion of the animation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文