我正在尝试使用回调函数创建悬停效果。似乎只能在回调函数上触发效果,而不能在init悬停上触发。我想知道这里是否有人可以帮助我。非常感谢。
$("img").live("hover", function () {
// hover in
$(this).css("z-index", 1);
$(this).animate({
height: "35%",
width: "35%",
left: "-=50",
top: "-=50"
}, "fast");
}, function () { //only the following codes will be triggered.
// hover out
$(this).css("z-index", 0);
$(this).animate({
height: "15%",
width: "15%",
left: "+=50",
top: "+=50"
}, "fast");
});
img 是通过 ajax 调用生成的,不确定是否相关
<div id='image_layout'>
<img src='a.jpg' />
<img src='b.jpg' />
<img src='c.jpg' />
</div>