I have this image in my website, is a png.I want to know if there is anyway with HTML5 , javascript or css to change the color of the image? At least the image change to white (invert color black to white, not the transparency).
Thanks in advance
|
|
You cannot do this in plain HTML or CSS. You can do this with JS/HTML Canvas, but there is probably a much easier and more compatible solution than JS/HTML Canvas for performing image manipulation. Depending on what you are trying to do, you may just want to create a second image that you swap out with the first. There are also some decent image manipulation packages in server-side languages like PHP, if you need to do something more dynamic. If you are set on using js, the code below is modified from your example. Using your example:
|
|||||||||||||
|
|
You haven't explained why you aren't just using Photoshop to do it, but I assume you have your reasons.
I'm not sure how well it works with transparent Here's a demo of the "Invert" effect: http://www.pixastic.com/lib/docs/actions/invert/ You've lucked out with the browser support for "Invert" - it works in even IE:
|
|||||||||||
|