Fixing vertical jump at end of jQuery slideDown animation

前端 未结 2 1601
刺人心
刺人心 2021-02-13 16:32

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
    闹比i (楼主)
    2021-02-13 16:45

    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.

提交回复
热议问题