将内容加载到 div 中,并使用 jQuery 调整 div 的大小

发布于 2024-11-17 06:48:40 字数 457 浏览 0 评论 0原文

可能的重复:
jQuery 动画 - 平滑大小过渡

我有一个 div #infoMenu,其内容正在被替换使用以下代码:

function infoMenu(worldID) {
    $('#infoMenu').load('main.php?worldID='+worldID+'&menu #infoMenu').html('Loading...');              
}

我想知道是否可以为 div 的高度设置动画,而不是根据新内容的空间“跳”到不同的高度。

谢谢!

Possible Duplicate:
jQuery Animation - Smooth Size Transition

I have a div #infoMenu, whose content is being replaced with the following code:

function infoMenu(worldID) {
    $('#infoMenu').load('main.php?worldID='+worldID+'&menu #infoMenu').html('Loading...');              
}

I wonder if I can animate the div's height instead of it just "jumping" into diffrent heights depending on the new content´s space.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

困倦 2024-11-24 06:48:40

尝试添加回调函数:

function infoMenu(worldID) {
    $('#infoMenu')
        .load('main.php?worldID='+worldID+'&menu #infoMenu', function(data){
          $('#infoMenu').animate({ height: '500px' }, 1000);
        })
        .html('Loading...');              
}

但请确保 css 具有设置的高度和 overflow: hide;


编辑:更好的是,设置 overflow:scroll 然后将动画设置为滚动高度:

$('#infoMenu').animate({ height: $('#infoMenu')[0].scrollHeight }, 1000);

Try adding a callback function:

function infoMenu(worldID) {
    $('#infoMenu')
        .load('main.php?worldID='+worldID+'&menu #infoMenu', function(data){
          $('#infoMenu').animate({ height: '500px' }, 1000);
        })
        .html('Loading...');              
}

But make sure the css has a set height and overflow: hidden;


Edit: Better yet, set the overflow:scroll then animate to the scrollHeight:

$('#infoMenu').animate({ height: $('#infoMenu')[0].scrollHeight }, 1000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文