krazydevil20
New Member
I'm trying to sequence some animations using jQuery and css transitions. It seems like the container width should animate until after the widget is done transitioning from the 'top' css change, but they are firing together.Why does\[code\] widget.one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(i) { widget.css({'top': top}); widget.one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(i) { container.css({'width': "19%"}) }); });\[/code\]Animate in the same sequence as this?\[code\] widget.one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(i) { widget.css({'top': top}); }); widget.one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(i) { container.css({'width': "19%"}) });\[/code\]