iPhone 4 上的 HTML5 过渡性能
相关问题已在这里提出: 给定步骤的 CSS3 或 jQuery 动画
现在我想问,是否有适用于 iPhone 4 / iPad / iPad 2 的过渡(CSS3 或 jQuery),可以逐渐更改全屏幻灯片(图像甚至框架,充满控件),并且速度足够快以使其平滑?
问候,
The related question has been asked here:
CSS3 or jQuery animation with given step
Now I'd like to ask, is there a transition (CSS3 or jQuery) that works on iPhone 4 / iPad / iPad 2, lets to change full-screen slides (images or even frames, full of controls) gradually and is fast enough to be smooth?
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在 iOS 设备上获得最大性能,请在过渡/动画中使用translateZ(0) 或translate3d(0,0,0) 以通过GPU 启用硬件加速。
更多信息在这里: http://www.html5rocks.com/ en/tutorials/speed/html5/#toc-visual-fidelity
如何实现此示例:
CSS
For maximum performance on iOS devices, use translateZ(0) or translate3d(0,0,0) in your transition/animation to enable hardware acceleration via the GPU.
more info here: http://www.html5rocks.com/en/tutorials/speed/html5/#toc-visual-fidelity
example of how you would implement this:
CSS