Side navigation
#4423 closed bug (invalid)
Opened March 25, 2009 10:16PM UTC
Closed December 02, 2010 08:07AM UTC
Scope of Animation Queue
Reported by: | blackoutman | Owned by: | blackoutman |
---|---|---|---|
Priority: | minor | Milestone: | 1.4 |
Component: | effects | Version: | 1.3.2 |
Keywords: | animate, fx, queue | Cc: | |
Blocked by: | Blocking: |
Description
Using "queue:false" in animation params seems to lack the ability to run more than one parallel animation on an element.
When animating a chain of elements, you can create a complex animation by deque-ing specific elements - Example:
$(this)
.animate( {top:'+=250px'},{queue:false, duration: 1000} )
.animate( {left : '+=100px'},{duration: 1000, easing:'easeInOutQuad'} )
This simulates a complex animation, allowing an element to animate along a curved path. However, if I try to add another de-queued animation later along in the chain, i run into issues and the animation stops functioning properly (it seems only one item can be de-queue'd per element, is this correct?). Sorry, my javascript skills are somewhat lacking, so maybe I am just not doing this properly....
Please provide a test case, it's not clear from the description above.