Opened 12 years ago
Closed 11 years ago
#8370 closed bug (fixed)
toggle animation height jumps/snaps when expanding
Reported by: | nicasi | Owned by: | scott_gonzalez |
---|---|---|---|
Priority: | blocker | Milestone: | 1.next |
Component: | effects | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The toggle() method jumps to it's final height at the end of the expanding animation cycle:
This is also the case if the animate() method is used providing 'height': 'toggle' as can be seen here:
Behaviour occurs on Safari 5.0.2, Firefox 3.6, IE8 and Chrome 9
If you put a width on the element the behaviour disappears.
Change History (9)
comment:1 Changed 12 years ago by
Component: | unfiled → effects |
---|---|
Priority: | undecided → high |
Status: | new → open |
comment:2 follow-up: 3 Changed 12 years ago by
Owner: | set to scott_gonzalez |
---|---|
Status: | open → assigned |
comment:3 Changed 12 years ago by
Replying to danheberden:
Hey, I've posted a ticket about a very similar problem yesterday, but now I found this ticket, so I will just link to my test page.
http://www.criticalwarfare.com/boredom/chat/jquerySlideToggleBug.php
The example also shows why the bug happens, and how you can work around it.
Basically, what happens is that jQuery tries to calculate the width, since it's not given in css. However to do so it seems to take the element out of its content. For divs this means that their width gets resized to use whatever space there is.
If you would allow the div to be slided to actually use all this space, you will find that the slide is perfect. Otherwise, it will slide until the maximum height, and consider that the end so it resets the height making the element jump back in its default height.
As an added note, this bug will occur on any jQuery function that tampers with the element's height. In certain conditions it might also be possible to get an incorrect width by the same reason.
Hope this helps in solving the bug, I'm pretty sure this IS the issue.
comment:5 Changed 12 years ago by
Priority: | high → blocker |
---|
http://jsfiddle.net/rwaldron/aWEdc/2/
From latest duplicate
comment:6 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
Unfortunately there's not really anything that we can do on our end to divine the right height. Setting the width (as previously mentioned) will achieve the correct result - I recommend doing that in your scripts.
comment:8 Changed 11 years ago by
Resolution: | wontfix |
---|---|
Status: | closed → reopened |
This was fixed in 1.8
comment:9 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Confirmed