If I have a png with a tranparent background, is it possible to add a glow type of effect around ONLY the NON-transparent part of the png with jQuery or css?
Thank you!
If I have a png with a tranparent background, is it possible to add a glow type of effect around ONLY the NON-transparent part of the png with jQuery or css?
Thank you!
You could place a copy of the image behind the image and use CSS3 filter on the copy. Like this:
filter: blur(6px) opacity(0.15);
..if that is the effect you are looking for.