我正在使用jQuery animate扩展div。然而,在那个div里面,我有另一个div,我想跟随扩展并且总是在右下角。
这是jquery代码
$( ".top-button" ).click(function() {
$('.top-menu').animate({ height: 110 }, 800);
});
我猜这与CSS有关吗?
答案 0 :(得分:1)
你可以试试这个
$(document).ready(function() {
$( ".top-button" ).click(function() {
$('.top-menu').animate({height:110},800);
$('.top-button').animate({bottom:0},800);
});
});