#11399 closed bug (duplicate)
visible content when animating
Reported by: | wasikuss | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | effects | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
when animating size of content of div his visible area is trimmed to his inner bounds. if the content overflap border or lay out of div then it is trimmed even if overflow is set to visible
here example: http://jsfiddle.net/wasikuss/sZeG7/
bottom div show how it should work
Change History (4)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Component: | unfiled → effects |
---|---|
Priority: | undecided → low |
Resolution: | → duplicate |
Status: | new → closed |
The overflow attribute of an element with an animated width or height is set to hidden until after the animation is complete in order to prevent content from overflowing during animations. You can easily override this by setting "overflow: visible !important;" on the animated div.
comment:4 Changed 11 years ago by
i have found that is bug in 8414 line
if ( opt.overflow != null ) {
it should be
if ( opt.overflow == undefined ) {
then you dont have to use any css tricks like !important
i have found that when jQuery calls animate function sets the element overflow to hidden. how can i turn it off?