0

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

这是jquery代码

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

我猜这是与CSS相关的东西吗?

提琴手

4

1 回答 1

1

你可以试试这个

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

JSFiddle

于 2013-10-04T09:33:13.193 回答