我正在用 jQuery animate 扩展一个 div。但是在那个 div 里面我有另一个 div,我想跟随它展开并且总是在右下角。
这是jquery代码
$( ".top-button" ).click(function() {
$('.top-menu').animate({ height: 110 }, 800);
});
我猜这是与CSS相关的东西吗?
我正在用 jQuery animate 扩展一个 div。但是在那个 div 里面我有另一个 div,我想跟随它展开并且总是在右下角。
这是jquery代码
$( ".top-button" ).click(function() {
$('.top-menu').animate({ height: 110 }, 800);
});
我猜这是与CSS相关的东西吗?