Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Chrome 12 really support CSS 3D transforms? Including on Linux?

I'm using Chrome 12 in a Linux 64bit box, but I can't get any of the samples bellow to work:

  • http://www.satine.org/research/webkit/snowleopard/snowstack.html
  • http://www.marcofolio.net/css/3d_animation_using_pure_css3.html
  • http://kevchapman.co.uk/css/webkit-css-perspective-demo/

They all use -webkit-perspective, but the final results differ a lot from the results got in Safari (Windows XP). So, after all, does Chrome support CSS 3D transforms? Or the support is still limited?

Thanks!

like image 504
Carlos Melo Avatar asked Jun 13 '11 19:06

Carlos Melo


3 Answers

Go to the Chromium web SCM interface and check that your GPU isn't blacklisted.

Also, go to chrome://gpu/ and check that Chrome reports 3D CSS as enabled.

like image 79
2 revs Avatar answered Nov 03 '22 00:11

2 revs


The problem is that 3d support in webkit browsers depends on your videocard. That's why you cannot see that examples, but your browser engine still supports 3d transforms. To resolve this problem you can use Modernizr, which detects browser+videocard 3dtranforms support.

like image 44
Olegbl4 Avatar answered Nov 03 '22 00:11

Olegbl4


I'm using Chrome on a Windows 7 machine right now, and all the demos seemed to behave exactly as they should have. Have you tried Chrome on your XP machine?

like image 27
Coeffect Avatar answered Nov 03 '22 01:11

Coeffect