Possible Duplicate:
CSS3 animation with gradients
I have an element with a radial gradient, code as follows:
background: radial-gradient(center, ellipse cover, rgba(255,255,255,0.65) 0%,rgba(255,255,255,0) 100%);
I want to make a transition from invisible to visible, which I believe would be accomplished by changing alpha value of the first rgba value. I just don't know how the syntax should look like. Or is this even possible in CSS3?