このクラスの画像があります:
.hide{
visibility:hidden;
}
マウスが div .test の上にあるとき、可視性を「可視」にしたいので、アニメーション化したいので、使用しています
$(document).on('mouseover', '.test', function () {
$(this).find('.hide').animate({visibility:'visible'},300);
});
残念ながら機能していません。
また、 hide() と show() を使用したくありません