图片的定位relative,
遮罩层定位position
先将位置放置好
$(function () { $(".g-moon").css("opacity", "0"); $(".g-moon").hover(function () { $(this).stop().animate({ opacity: .8 }, "slow"); }, function () { $(this).stop().animate({ opacity: 0 }, "slow"); }); });
.g-moon为遮罩层的class
共有 1 条评论