Animate Height Bottom to Top Instead of Top to Bottom

后端 未结 3 1193
暖寄归人
暖寄归人 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:25

    Animate as you would for top-to-bottom, but add element.scrollTop = 99999;

    This will ensure that the bottom of the content is visible (unless for some reason it's 100,000 pixels tall) and the effect will be bottom-to-top animation.

提交回复
热议问题