我有一个 div,我可以用 jQuery 淡出它。但是当我在那个 div 里面放一个 svg 时,我不能再这样做了。是否可以淡出带有 svg 的 div?
HTML:
<div id="interrogant">
<object data="interrogant.svg" width="80" height="150" type="image/svg+xml"></object>
</div>
CSS:
#interrogant{cursor: pointer; background-color:blue; width:80px; height:150px;}
查询:
$(function(){
$("#interrogant").click(function() {
$("#interrogant").fadeOut("normal");
});
})