Hello Everyone,
I gotta problem that effects 2 of my products. I was wandering if I
could get your take on it.
Basically, I have 2 parallel effects.
First Effect makes things disappear
new Effect.Parallel(
[ new Effect.Fade(oTab.panel, {duration: 1}),
new Effect.Fade(contentId, {duration:1}),
new Effect.SlideUp(this.panelContainer, {duration:1})
], {queue:{position: end, scope: ''tabEffects''}});
Second Effect makes things appear
new Effect.Parallel(
[ new Effect.Appear(oTab.panel, {duration: 1, queue:{position: front,
scope: ''tabEffects''}}),
new Effect.Appear(contentId, {duration:1, queue:{position: front,
scope: ''tabEffects''}}),
new Effect.SlideDown(this.panelContainer, {duration:1,
queue:{position: front, scope: ''tabEffects''}})
], {duration:1, queue:{position: front, scope:
''tabEffects''}});
Now what happens is that the first effect executes, then there is a
pause of about 1-2 seconds, it''s difficult to say but it''s a
noticable
lag. After the pause the second effect executes.
It looks like the transfer from front in the queue to end in the queue
is not immidiate. Is there any way to make it immidiate?
Thank you very much for your feedback,
Taras
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs
-~----------~----~----~----~------~----~------~--~---