是否可以拥有“S形”的身材? JQuery 中的动画速度曲线?
在 Apple iPhone 上,幻灯片动画速度遵循 S 形曲线,开始时缓慢,加速,最后减速。请参阅这篇文章以直观地了解我的意思: http://watchingapple.com/2009/11/ a-closer-look-at-iphone-transition-animations/
是否可以使用 JQuery 来做到这一点?
On the Apple iPhone, the slide animation velocities follow an S-shaped curve where it starts off slow, accelerates and then slows down at the end. See this article to see a visualization of what I mean:
http://watchingapple.com/2009/11/a-closer-look-at-iphone-transition-animations/
Is it possible to do this with JQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
直接 jQuery 中唯一的选项是
swing
(默认)和linear
,但是使用 jQuery UI,您可以使用 所有这些选项。我认为
swing
已经是 S 形了,但 jQuery UI 中肯定还有更多选择。The only options in straight jQuery are
swing
(the default) andlinear
, but with jQuery UI you have all of these options.I think
swing
is S-shaped already, but there are definitely more options in jQuery UI.此处查看 easeInOutCubic 和 easeInOutQuart。
Check out easeInOutCubic and easeInOutQuart here.