0
$('#home-logo').aniAutoHeight(aniHeightSpeed).animate({ backgroundColor: '#004329', color: 'gray', paddingTop: 50 }, aniHeightSpeed, function(e) {
    if ($(document).height() > ($('#home-copy').offset().top + $('#home-copy').outerHeight())) {
        $('#home-copy').height($(document).height() - $('#home-copy').offset().top);
    }
});

$('#home-copy').aniAutoHeight(aniHeightSpeed).animate({ backgroundColor: 'white', color: 'gray', paddingTop: 50 }, aniHeightSpeed, function(e) {
    if ($(document).height() > ($('#home-copy').offset().top + $('#home-copy').outerHeight())) {
        $('#home-copy').height($(document).height() - $('#home-copy').offset().top);
    }
});

上面的代码是关于改变内容框的高度我想要的高度'#home-logo'是一样的#home-copy,但它似乎根本不起作用。#hoe-logo不会走下去

谁知道怎么修它?非常感谢您

4

0 回答 0