Y
Hacker News
new
|
ask
|
show
|
jobs
by
huskyr
5360 days ago
AFAIK, on iOS CSS (especially when using transforms) is a lot faster because it's hardware accelerated.
1 comments
ryanpetrich
5360 days ago
Only when using transforms and only when using 3D transforms (though iOS5.0 may support hardware accelerated 2D transforms as well)
link
rjett0
5360 days ago
You can hardware accelerate 2D transforms on iOS. You just do a -webkit-transform: translateZ(0); and it puts the element in the compositing layer.
link
ryanpetrich
5359 days ago
Yes, that is a 3D transform.
link