我想淡出一张图像的不透明度,然后淡入另一张图像。背景是在CSS中添加的,这是可能的。
编辑:
//Current changing mechanism, change is instant.
document.getElementById('fade').style.backgroundImage="url(flickrIcon.png)";
是否可以使用以下内容:
document.getElementById("fade").style.backgroundImage.opacity = (e.g, 0.8);
然后用间隔函数操纵不透明度?
答案 0 :(得分:0)
css背景没有不透明度选项。
你必须首先淡化不透明度,然后关掉bg图像,然后淡入。如果你想要交叉渐变,你必须使用两个元素。