divがホバーされたときに展開するには、divの背景画像が必要です。これを行う最善の方法は何ですか?
滑らかなアニメーションである必要があります。理想的には JQuery を使用したいのですが、コーディングに非常に慣れていないので、使用できる既製のコードはありますか?
私はちょうどこのコードを作成しました。役立つことを願っています
<img class="wooll" src="/images1" style="position: absolute; margin: 0 0 0 20px;" />
<img style="" src="/images2" class="grow"/>
$(".wooll, .grow").hover(function() {
$('.grow').animate({
'height': $(this).height() * 1.4,
'width': $(this).width() * 1.4
});
}, function() {
$('wool, .grow').animate({
'height': $(this).height() / 1,
'width': $(this).width() / 1
});
});