-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mobile safari support #2
Comments
Looks like a problem with the detection script, I'll look into it! |
Confirming detection failure on iOS 5.1 with mobile Safari. The browser definitely does support CSS3D transformations, as I have used it primarily to build my 3d maze game. |
Had similar issues on my iPad 3. |
You can use modernizr feature detection to fix it quickly (make sure you tick the 'prefixed' option in modernizr build tool): var canRun = Modernizr.prefixed('Perspective') in el.style;
var prefix = '-' + Modernizr.prefixed('Perspective').split('Perspective')[0].toLowerCase() + '-'; |
soulwire
pushed a commit
that referenced
this issue
May 29, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Demo doesn't seem to run on mobile Safari (5.1), but can't see a reason why not as CSS transforms etc all supported in the browser. Not had time to test on other versions. Looks lovely in Chrome tho ;)
The text was updated successfully, but these errors were encountered: