Animate Height Bottom to Top Instead of Top to Bottom

后端 未结 3 1195
暖寄归人
暖寄归人 2021-01-23 02:40

How can I achieve height animation in reverse?

Instead of the typical animation starting from the top and working its way down, how can I have it start the animation fr

3条回答
  •  一整个雨季
    2021-01-23 03:32

    You div and your a tags have the same ID. They must have unique IDs.

    $('a#line-1').click(function() {
        $('div#line-1').animate({
    

    needs to be something like:

    $('a#line-1').click(function() {
        $('div#unique_id').animate({
    

    Example Fix

提交回复
热议问题