is it possible to use the appear effect with an <img> that is set visibility:hidden? greez --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On 2/25/07, tofuSCHNITZEL <tobias.perschon-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> is it possible to use the appear effect with an <img> that is set > visibility:hidden?I was just fiddling around with that, and didn''t have much luck. Maybe I''m wrong, though. -- David N. Welton - http://www.dedasys.com/davidw/ Linux, Open Source Consulting - http://www.dedasys.com/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
David Welton a écrit :> On 2/25/07, tofuSCHNITZEL <tobias.perschon-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> is it possible to use the appear effect with an <img> that is set >> visibility:hidden?Nope. Appear, and just about everything appear/hide-like in SAU and Prototype, are based on the display property (being set to ''none'' for hiding). The visibility property differs from display in that it preserves layout space for the item (which may, very well, be what you need...). So you''d have to go another route... Maybe work on opacity instead (set the opacity to 0, then use Effect.Opacity to gradually reveal this thing, much like Appear does)? -- Christophe Porteneuve a.k.a. TDD "[They] did not know it was impossible, so they did it." --Mark Twain Email: tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---