用jQuery实现 鼠标移上图片则淡淡显示,移开则淡淡消失

用jQuery实现 鼠标移上图片则淡淡显示,移开则淡淡消失
2024-10-28 09:47:39
推荐回答(2个)
回答1:

给你个效果好些的









style="position: absolute;width: 100px;height: 100px;border: 1px solid #336699;overflow: hidden;text-align: center;line-height: 100px;">

Star

src="images/star.png">


回答2:

$('img').hover(function(){
$(this).show('slow');
},function(){
$(this).hide('slow');
});