trollacious
Programmer
Working with opacity doing a transition, the following works in IE and Firefox:
If I put the same into a CSS file and run the transition JS script, neither Firefox nor IE (version 6) changes opacity. When I remove alpha(opacity=0); from the inline style and put it in the CSS file, IE stops changing opacity. When I remove -moz-opacity: 0; from the inline style and add it to the CSS file, Firefox doesn't change opacity.
Any ideas what I'm missing here?
Lee
Code:
style="opacity: 0; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0;"
If I put the same into a CSS file and run the transition JS script, neither Firefox nor IE (version 6) changes opacity. When I remove alpha(opacity=0); from the inline style and put it in the CSS file, IE stops changing opacity. When I remove -moz-opacity: 0; from the inline style and add it to the CSS file, Firefox doesn't change opacity.
Any ideas what I'm missing here?
Lee