SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our User Agreement and Privacy Policy.
SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our Privacy Policy and User Agreement for details.
Successfully reported this slideshow.
Activate your 14 day free trial to unlock unlimited reading.
Breaking Limits on Mobile HTML5 - 15 Hacks you might not know
full screen var body =
document.documentElement; if (body.requestFullScreen) { body.requestFullScreen(); } Thursday, May 16, 13
full screen var body =
document.documentElement; if (body.requestFullScreen) { body.requestFullScreen(); } else if (body.webkitRequestFullScreen) { body.webkitRequestFullScreen(); } Thursday, May 16, 13
full screen var body =
document.documentElement; if (body.requestFullScreen) { body.requestFullScreen(); } else if (body.webkitRequestFullScreen) { body.webkitRequestFullScreen(); } else if (body.mozRequestFullScreen) { body.mozRequestFullScreen(); } Thursday, May 16, 13
hi res canvas var devPxRatio
= window.devicePixelRatio; var canvasPxRatio = document.querySelector("canvas") .getContext("2d") .webkitBackingStorePixelRatio; Thursday, May 16, 13
1 fullscreen 2 snapped mode
3 hires canvas 4 numeric field 5 rich editor 6 background tab 7 images & densities 8 html media capture 9 push notification A home screen title B live tile C storage limits D bandwidth simulators E virtual mobile labs F live reload Thursday, May 16, 13