任何人都可以帮助我,我已经检查了调整大小的演示,但这项工作通过句柄,但我需要悬停,当div比例然后其他内容自动进入下面 像这个链接http://sea-hunters.com/这个链接右侧菜单对悬停有影响吗?
答案 0 :(得分:0)
您可以使用jQuery animate函数调整大小。
$('ul li').hover(function(){
$(this).animate(... //animate height and width
}, function(){
$(this).animate(... //animate back
});