0

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!

lte__
  • 7,175
  • 25
  • 74
  • 131
  • 1
    Possible duplicate http://stackoverflow.com/questions/9878162/possible-to-create-a-css-shadow-on-transparent-background-png-image – Shrinivas Pai Jul 24 '15 at 13:05

1 Answers1

0

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.

Roberg
  • 1,083
  • 1
  • 12
  • 11
  • My Q was a duplicate, sorry :( This was what I was looking for: http://stackoverflow.com/questions/9878162/possible-to-create-a-css-shadow-on-transparent-background-png-image – lte__ Jul 24 '15 at 13:14