gmourasilva-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2008-Jun-18 02:38 UTC
similar effect for: http://toolmantim.com/article/2007/10/14/old_skool_ajax_zoop_box
i''m amazing with effect from this post. anybody knows how to make using script.aculo.us? --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---
Frederick Polgardy
2008-Jun-18 14:10 UTC
Re: similar effect for: http://toolmantim.com/article/2007/10/14/old_skool_ajax_zoop_box
Yes. Do you have a specific question? :-) If you want to know how to accomplish the fade-in/fade-out technique, my approach would be to have the two forms absolutely positioned inside the same relative container, and use fade, appear, and parallel to do the transition: <div style="position:relative;"> <div id="block1" style="position:absolute;"></div> <div id="block2" style="position:absolute;"></div> </div> <script> new Effect.Parallel([ new Effect.Fade(''block1''), new Effect.Appear(''block2'')]); </script> Disclaimer: this was typed purely off the top of my head, and comes with no guarantee expressed or implied. :-) -Fred On Tue, Jun 17, 2008 at 9:38 PM, gmourasilva-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org < gmourasilva-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > i''m amazing with effect from this post. > > anybody knows how to make using script.aculo.us?-- Science answers questions; philosophy questions answers. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---