Skip to content

Instantly share code, notes, and snippets.

@FirstVertex
Forked from lorenzopolidori/has3d.js
Last active December 15, 2015 19:29
Show Gist options
  • Save FirstVertex/5312032 to your computer and use it in GitHub Desktop.
Save FirstVertex/5312032 to your computer and use it in GitHub Desktop.
function has3d(){
var el = document.createElement('p'),
has3d,
transforms = {
'webkitTransform':'-webkit-transform',
'OTransform':'-o-transform',
'msTransform':'-ms-transform',
'MozTransform':'-moz-transform',
'transform':'transform'
};
// Add it to the body to get the computed style
document.body.insertBefore(el, null);
for(var t in transforms){
if( el.style[t] !== undefined ){
el.style[t] = 'translate3d(1px,1px,1px)';
has3d = window.getComputedStyle(el).getPropertyValue(transforms[t]);
has3d = (has3d !== undefined && has3d.length > 0 && has3d !== "none");
if (has3d) break;
}
}
document.body.removeChild(el);
return has3d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment