如何将 jQuery 的 .animate 方法与 min-height 一起使用?

发布于 2024-10-30 18:24:48 字数 312 浏览 0 评论 0原文

我尝试将 min-height 与 jQuery.animate 一起使用,如下所示:

$insert.animate({ min-height : 52 }, 1000).animate({ opacity : 1 }, 1000);

但它破坏了脚本。如果我使用 height : 52 它就可以了。有什么想法吗?

编辑:查看演示

I am trying to use min-height with jQuery.animate like this:

$insert.animate({ min-height : 52 }, 1000).animate({ opacity : 1 }, 1000);

but it breaks the script. If i use height : 52 it works. Any ideas?

edit: see demo

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

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

发布评论

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

评论(2

如此安好 2024-11-06 18:24:48

尝试将 min-height 括在引号中:

$insert.animate({ 'min-height' : 52 }, 1000).animate({ opacity : 1 }, 1000);

我应该添加:我假设 $insert 是指向块元素的指针,即 $insert = $(' #insert'),其中 #insert 是带有 display: block 的 HTML 元素。我也在 JSFiddle 中尝试了我的解决方案

Try wrapping min-height in quotes:

$insert.animate({ 'min-height' : 52 }, 1000).animate({ opacity : 1 }, 1000);

I should add: I'm assuming $insert is a pointer to a block element, i.e. $insert = $('#insert'), where #insert is an HTML element with display: block. I tried my solution in JSFiddle too.

内心激荡 2024-11-06 18:24:48
$insert.animate({'min-height':'500px'}, 1000);

这是使用 jQuery 1.7 的正确语法

$insert.animate({'min-height':'500px'}, 1000);

This is correct syntax using jQuery 1.7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文