-2

任何人都可以帮助我吗,我已经检查了调整大小的演示,但这可以通过手柄进行,但我需要悬停,当 div 缩放时,其他内容会自动转到下面,如此链接http://sea-hunters.com/在此链接右侧菜单中对悬停有影响吗?

4

1 回答 1

0

您可以使用 jQuery animate函数调整大小。

$('ul li').hover(function(){
  $(this).animate(... //animate height and width
}, function(){
  $(this).animate(... //animate back
});
于 2012-06-22T07:23:04.403 回答