JQuery .slideDown() is sliding up

后端 未结 3 531
后悔当初
后悔当初 2021-01-13 10:36

This works but I\'m not sure why. In function capIn(), in my mind the line $botcap.slideDown(\"slow\") should slide the div down. It slides it up.

3条回答
  •  粉色の甜心
    2021-01-13 10:56

    This is because of positioning the element with absolute position and bottom: 0; This will actually treat the element as if it is bottom-based, therefore its slideDown() is going upwards. It can be fixed by using top: (height of element) instead of bottom: 0.

提交回复
热议问题