メインdivにカーソルを合わせると、jqueryを使用して子divの背景を変更しています。
$('#bottom-a .module.responsive').hover(function () {
$('#bottom-a .responsive .mod-icon').css({
"background-position": "left bottom"
});
}, function () {
$('#bottom-a .responsive .mod-icon').css({
"background-position": "left top"
});
});
このスクリプトにアニメーションを追加するにはどうすればよいですか?ありがとう!