我想在悬停时调整div或调整div?

时间:2012-06-22 07:12:45

标签: jquery html resize scale

任何人都可以帮助我,我已经检查了调整大小的演示,但这项工作通过句柄,但我需要悬停,当div比例然后其他内容自动进入下面 像这个链接http://sea-hunters.com/这个链接右侧菜单对悬停有影响吗?

1 个答案:

答案 0 :(得分:0)

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

$('ul li').hover(function(){
  $(this).animate(... //animate height and width
}, function(){
  $(this).animate(... //animate back
});