I want to invert the colors of an image when the mouse rolls over the image using Javascript. I do not want to use Image Rollover as it will increase the load time.

I am building my first website...so I am not really good at Javascript codes.

Can someone suggest the coding? Thank you!

I was under the impression that using a Javascript program will make the website to load faster than using images with CSS sprite...which method is faster in this case? Point is...my site already has a lot of images...so I am really concerned about the load time.

link|improve this question

0% accept rate
1  
I imagine streaming down a few extra images for mouse rollover effects would always be faster then per pixel processing each image in client side javascript. – asawyer Apr 20 '11 at 19:46
2  
And if you use a sprite sheet for the images then you won't have the load delay on the first hover. – mu is too short Apr 20 '11 at 19:48
@mplungjan - I don't see how opacity helps to get the effect the OP wants. @mu is too short - That is probably what most developers in the world (including myself) would do in this situation. – Christian Apr 20 '11 at 19:55
feedback

1 Answer

Soh Tanaka has a great tutorial for this. You need to use your imagination for this one a little because its more complex than you might think.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.