Is it possible to have an image fade to transparency using CSS3? I know I can achieve this effect with a PNG image, but changing the transparency levels requires graphic designer intervention each time. Can CSS3 offer a solution without having to change images?
I have tried applying gradients to JPG and PNG files, but I can only see through them if the PNG file is already transparent. This renders the CSS gradient useless. Is there any way around this issue?
I have been searching online for a solution, but I may not be using the right keywords or maybe such an effect is simply not feasible.
Update 1:
I believe code speaks louder than words. I am looking to create something like this (although the syntax is incorrect):
background: linear-gradient(to bottom, rgba(url('splash_bottom3.png'), 0.0), rgba(url('splash_bottom3.png'), 1.0));