Jquery: how to sleep or delay?

后端 未结 2 661
半阙折子戏
半阙折子戏 2020-11-30 05:21

i want move up the object, delay 1000ms , then hide it,

i get the code:

$(\"#test\").animate({\"top\":\"-=80px\"},1500)
      .animate({\"top\":\"-=0         


        
相关标签:
2条回答
  • 2020-11-30 05:51

    How about .delay() ?

    http://api.jquery.com/delay/

    $("#test").animate({"top":"-=80px"},1500)
              .delay(1000)
              .animate({"opacity":"0"},500);
    
    0 讨论(0)
  • 2020-11-30 06:04

    If you can't use the delay method as Robert Harvey suggested, you can use setTimeout.

    Eg.

    setTimeout(function() {$("#test").animate({"top":"-=80px"})} , 1500); // delays 1.5 sec
    setTimeout(function() {$("#test").animate({"opacity":"0"})} , 1500 + 1000); // delays 1 sec after the previous one
    
    0 讨论(0)
提交回复
热议问题