Detect if your computer supports 3D transforms properly

When I discover webkit, I add an extra stylesheet using the 3D Transforms properties.
Although it works great on different computers (all on the same chrome version), some do not display the animation properly.

These are old computers with a cheaper graphics card. (I think this is what causes the problem.)

Is there a better way to determine if a computer can handle Css 3D Transforms than relying on browser detection?

0
source share
1 answer

Use Modernizr and its class name csstransforms3d.

More on these links:

http://modernizr.com/

http://modernizr.com/docs/#features-css

-one
source

All Articles