マウスオーバーしたときに画像を移動し、mouseOut時に前の位置に戻したい。このスクリプトは正常に機能しますが、マウスを数回動かすと、動き続けます。どうすれば修正できますか?
$(document).ready(function () {
$(".HomeClaimWrapper .img").hover(function () {
$(".HomeClaimWrapper .img").animate({
top: "-15px"
}, 500);
});
$(".HomeClaimWrapper .img").mouseout(function () {
$(".HomeClaimWrapper .img").animate({
top: "0px"
}, 500);
});
});