JQuery .show("slide", 1000) table formatting jumps at beginning and end -
i using .show("slide", 1000)
method on unordered list items within table cell. seemingly every other effect other fade, causes table have different layout during animation after animation. ideas why happening? result looks pretty glitchy. hints layout looking consistent during , after animation?
$('li#errorfirstname').show("slide", 1000);
because slide
not know how wide ul
is, estimates goes - @ least far understand - , causes pixel jumping you're seeing.
i added width ul
, solves jumping issue. added ul {width:350px;}
css window on top-right of fiddle.
have here: http://jsfiddle.net/uudgj/18/
ultimately, give elements width/height jquery knows before starts animation.
Comments
Post a Comment