如何将 jQuery 的 .animate 方法与 min-height 一起使用?
我尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将
min-height
括在引号中:我应该添加:我假设
$insert
是指向块元素的指针,即$insert = $(' #insert')
,其中#insert
是带有display: block
的 HTML 元素。我也在 JSFiddle 中尝试了我的解决方案。Try wrapping
min-height
in quotes:I should add: I'm assuming
$insert
is a pointer to a block element, i.e.$insert = $('#insert')
, where#insert
is an HTML element withdisplay: block
. I tried my solution in JSFiddle too.这是使用 jQuery 1.7 的正确语法
This is correct syntax using jQuery 1.7