jQuery动画高度与以下内容

时间:2013-10-04 09:23:57

标签: jquery css jquery-animate

我正在使用jQuery animate扩展div。然而,在那个div里面,我有另一个div,我想跟随扩展并且总是在右下角。

这是jquery代码

$( ".top-button" ).click(function() {
    $('.top-menu').animate({ height: 110 }, 800);
});

我猜这与CSS有关吗?

JsFiddle

1 个答案:

答案 0 :(得分:1)

你可以试试这个

$(document).ready(function() {
$( ".top-button" ).click(function() {
    $('.top-menu').animate({height:110},800);
    $('.top-button').animate({bottom:0},800);
   });
});

JSFiddle