我遇到jQuery和透明度问题
我使用jQuery for show div onmouseover并隐藏onmouseout,如下例所示:
function carrousel_cover_up(id)
{
jQuery(".c_cover_"+id).show(1000).delay(3000).hide(2000);
if (id=="")
{
jQuery(".c_cover_"+id).hide(10);
}
}
jQuery中的脚本运行正常,问题是div的css有这个:
background: rgb(200%, 54%, 54%);
background: rgba(200, 54, 54, 0.5);
当show div透明度消失并且没有显示不透明度时,只有使用Internet Explorer与其他浏览器一起工作非常好并且我可以在显示onmouseover时看到div后面的对象
为什么会发生这种情况,我该如何解决?谢谢