0

非表示をスライドさせたいclickイベントハンドラーがあります。div私はこれを達成しましたが、トグルを使用して追加の上にスライドさせるのではなくclick、もう一度スライドさせたいと思います。

だから、下にスライドするのではなく、上にスライドして、下にスライドして、また下にスライドさせたい。

これは、私が望む効果/アニメーションを達成するまで、現在使用しているコードです:

$(document).ready(function() {      
    $(".whereami").click(function() {
       $(".currentpage").slideToggle("slow");
    });
});
4

1 に答える 1

0

ok i have read ur question like 5 times now ((: and solved your problem;

here is demo

to keep up continuity animation, use this way;

  $(".whereami").click(function() {
      $(".currentpage").animate({'top':'+=100px'},600);//adds +100 on every click
  });                                          //and 600 for animation's duration
于 2012-07-10T08:34:40.760 に答える