当 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
});
});