RE: Fading images with ajax

2007-08-20 Thread Brad Wood
Hmm, I'm sure you could make two versions of the image at page load (with cfimage) and switch the source with a mouse over, but performance might be suspect. I think I have seen some CSS stuff to change the opacity of images on the client side (which seems like an optimal solution), but I am

RE: Fading images with ajax

2007-08-20 Thread Andy Matthews
Depending on how many images you have, that could get a little intensive for the user's browser. Might be better to start with the images at 70% and fade the selected image IN to 100%. That way you're only affecting one image as opposed to 10 or 15. -Original Message- From: Bill

Re: Fading images with ajax

2007-08-20 Thread Will Tomlinson
I'm thinkin you should be able to do this with some CSS/JS. IE and FF support CSS opacity. http://www.mandarindesign.com/opacity.html Will ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for

RE: Fading images with ajax

2007-08-20 Thread Michael E. Carluen
=this.className='transpOn' src=your_image title=your_title border=0/a Hth! Michael -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 10:37 AM To: CF-Talk Subject: RE: Fading images with ajax Depending on how many images you have

RE: Fading images with ajax

2007-08-20 Thread Bill Betournay
, 2007 3:02 PM To: CF-Talk Subject: SPAM-LOW: RE: Fading images with ajax Bill, To Andy's and Will's suggestion, here's a css that might help you: style transpOn { filter:alpha(opacity=60);-moz-opacity:0.6;opacity:0.6; margin:;} transpOff { margin: 0px;} /style a href