JQ当鼠标移开1秒图片才出现怎么写
$('.cbdh_zuo>div').mouseout(function(){$(this).children('span').animate({"opacity":"1...
$('.cbdh_zuo>div').mouseout(function(){
$(this).children('span').animate({"opacity":"1"},1000);
}
这洋不行 要怎么改
给的图片已经先将透明度给到0了。 展开
$(this).children('span').animate({"opacity":"1"},1000);
}
这洋不行 要怎么改
给的图片已经先将透明度给到0了。 展开
1个回答
展开全部
<script>
$(function(){
$("#a").css("opacity", 0);
$("#b").mouseout(function(){
setTimeout(function(){
$("#a").css("opacity", 1);
},1000)
});
});
</script>
<div id="b" style="width:240px; height: 135px;"><img src="/images/empty.jpg" id="a" style="width:240px; height: 135px;" /></div>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询