Created
August 6, 2014 06:41
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 检测是否支持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