Opened 14 years ago
Closed 12 years ago
#4423 closed bug (invalid)
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....
Change History (2)
comment:1 Changed 12 years ago by
Owner: | set to blackoutman |
---|---|
Status: | new → pending |
comment:2 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Automatically closed due to 14 days of inactivity.
Please provide a test case, it's not clear from the description above.