Skip to content

Instantly share code, notes, and snippets.

@DannySu09
Created August 6, 2014 06:41
Show Gist options
  • Save DannySu09/35462132587d3c81307d to your computer and use it in GitHub Desktop.
Save DannySu09/35462132587d3c81307d to your computer and use it in GitHub Desktop.
Detect wether 3D is supported by current browser, but only work on webkit base browser.
// 检测是否支持3d
var detect3D = function(){
// 只在webkit浏览器下有效
if( !! (window.WebKitCSSMatrix && 'm11' in new WebKitCSSMatrix())) {
return true
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment