次のコードがあります。
$(document).on('hover', '.tic_cont:not(.disabled_ticket)',function () {
$(this).stop().find(".tic_icon").animate({ top: '-=16px' }, 250);
$(this).stop().find(".ti_shd").animate({ opacity: '0.25' }, 250);
}, function () {
$(this).stop().find(".tic_icon").animate({ top: '+=16px' }, 250);
$(this).stop().find(".ti_shd").animate({ opacity: '1' }, 250);
});
マウスオーバーdiv
すると下に移動し、マウスを離すと上に移動します。div
が常にダウンするという問題。どこに問題がありますか?
ありがとう。
更新:
デバッガーで、最初の関数が呼び出されないことがわかりました。