Hey everyone,
I have a series of thumbnails that have a loading overlay placed over
them when they're clicked on. The overlay is set to an opacity of .7..
.The onclick code looks basically does this:
var loading = document.createElement('div');
loading.id = 'loading_image';
$(loading).addClassName('thumb_loading');
$('container').appendChild(loading);
Position.clone($('myThumbnail').parentNode,$('loading_image'));
new Effect.Opacity($('loading_image'),{duration: .2, to: .7});
As long as the loading image is displayed (not just while it's
actively changing opacity) All the text on the page in FIrefox Mac
dims slightly. The images are left alone, only the text dims. Has
anyone else ran into something like this? Firefox 1.5 and 2.0
Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---