Jquery slider jump high

Does anyone know how to fix a crash in jquery where a sliding block snaps into place when it is moved by a large block.

Example

http://jsbin.com/emoba5/5/edit

Click on pose two to see the jump. I saw some fixes like this

http://jqueryfordesigners.com/slidedown-animation-jump-revisited/

but have no idea how to implement it in my code?

Thanks for watching :)

+3
source share
1 answer

Give the container the width as shown below:

.toggle_container .block { width: 200px; }

I know that I'm crazy, but believe me in that. Here is your example with the above CSS .

+6
source

Source: https://habr.com/ru/post/1743866/


All Articles