嗨,我有 3 次重复相同的块,我想为悬停的块设置动画,而不是另一个。下面的脚本动画所有块。我如何使用 jquery“this”来为悬停的 div 设置动画?我也有 .img 课程。
$(document).ready(function () {
$(".HomeClaimWrapper").hover(function () {
$(".HomeClaimWrapper .img").stop().animate({
top: "-10px"
}, 300);
});
$(".HomeClaimWrapper").mouseout(function () {
$(".HomeClaimWrapper .img").stop().animate({
top: "-5px"
}, 300);
});
});