根据 CSS 属性设置效果持续时间
$('.container').animate({ 'height': el.height() }, { duration: 300});
因此 el
的高度可以小于或大于 .container
的高度。
当当前高度与我要制作动画的高度之间的差异较大时,如何才能使效果持续时间更长?
$('.container').animate({ 'height': el.height() }, { duration: 300});
So el
's height can be smaller or greater than .container
's height.
How can I make it so the effect duration lasts longer when the difference between the current height and the one to which I'm animating is larger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将魔术常量
5
更改为任何看起来合理的值。您没有提供计算持续时间的标准;您可以将其与 Math.min(/*above expression*/, maxDuration) 绑定,或者它不应该是线性的,而是对数的。你可以很容易地定制它。尽管这是一个很好的起点。Change the magic constant
5
to anything that seems reasonable. You didn't provide criteria for computing the duration; you might bound it withMath.min(/*above expression*/, maxDuration)
, or maybe it shouldn't be linear but logarithmic. You can customize it quite easily. Although that's a good place to start.不确定它是否是正确的 JS 语法,但它应该可以工作。
http://api.jquery.com/height/
编辑:没关系,看看达文的答案。
Not sure if it's proper JS Syntax, but it should work.
http://api.jquery.com/height/
EDIT: Nevermind, look at davin's answer.