Fixing vertical jump at end of jQuery slideDown animation

前端 未结 2 996
攒了一身酷
攒了一身酷 2021-02-13 16:44

I am new to Jquery but have written a simple vertical accordion. It seems to to the job I require, but at the end of the slide down there is a visible jerk.

If anyone co

2条回答
  •  萌比男神i
    2021-02-13 16:48

    For reference in case somebody else comes across this problem, the following worked for me:

    .ui-accordion .ui-accordion-content {
        overflow: auto;
        box-sizing: content-box;
        -moz-box-sizing: content-box;
    }
    

    I don't really have time to investigate the details of why this fix works, but thought I'd share anyway.

提交回复
热议问题