a snapshot of the mobile html5 revolution
play

A Snapshot of the Mobile HTML5 Revolution @ jamespearce The - PowerPoint PPT Presentation

A Snapshot of the Mobile HTML5 Revolution @ jamespearce The Pledge Single device Multi device Sedentary user Mobile user * Declarative Imperative Thin client Thick client Documents Applications * or supine, or sedentary, or passive,


  1. A Snapshot of the Mobile HTML5 Revolution @ jamespearce

  2. The Pledge

  3. Single device Multi device Sedentary user Mobile user * Declarative Imperative Thin client Thick client Documents Applications * or supine, or sedentary, or passive, or...

  4. A badge for all these ways the web is changing

  5. HTML5 is a new version of HTML4, XHTML1, and DOM Level 2 HTML addressing many of the issues of those specifications while at the same time enhancing (X)HTML to more adequately address Web applications. - WHATWG Wiki

  6. WH A TWG

  7. What is an Application ?

  8. Consumption vs Creation? Linkable? User Experience? Architecture?

  9. Web Site sites Web apps Native App apps Nativeness

  10. MS RIM Google Apple Top US Smartphone Platforms August 2011, comScore MobiLens

  11. C# J2ME/Air Java/C++ Obj-C Native programming languages you’ll need August 2011

  12. IE WebKit WebKit WebKit Browser platforms to target August 2011

  13. There is no WebKit on Mobile - @ppk

  14. But at least we are using one language, one markup, one style system

  15. One Stack

  16. Camera WebFont Video Audio Graphics HTTP Location AJAX CSS Styling & Layout Contacts Events JavaScript SMS Sockets Orientation SSL Semantic HTML Gyro File Systems Workers & Cross-App Databases Parallel Messaging App Caches Processing

  17. The Turn

  18. IE Chrome Safari Firefox iOS BBX Android @font-face Canvas HTML5 Audio & Video rgba(), hsla() border-image: border-radius: box-shadow: text-shadow: opacity: Multiple backgrounds Flexible Box Model CSS Animations CSS Columns CSS Gradients CSS Reflections CSS 2D Transforms CSS 3D Transforms CSS Transitions Geolocation API local/sessionStorage SVG/SVG Clipping SMIL Inline SVG Drag and Drop hashchange X-window Messaging History Management applicationCache Web Sockets Web Workers Web SQL Database WebGL IndexedDB

  19. Stay on top of diversity Can I Use? http://caniuse.com Modernizr http://modernizr.com DeviceAtlas http://deviceatlas.com

  20. 100% Support Browsers Capabilities & specifications

  21. 100% Support Browsers Polyfills Frameworks Capabilities & specifications

  22. <!DOCTYPE html> <html> <head> <title> jQuery Mobile </title> <script src="jq.js"></script><script src="jqm.js"></script> <link rel="stylesheet" href="jqm.css" /> </head> <body> <div data-role ="page" id="home"> <div data-role ="header"> <h1>Hello World</h1> </div> <div data-role ="content"> <ul data-role ="listview" data-inset="true"> <li data-role ="list-divider">Continents</li> <li><a href="na.html">North America</a></li> <li><a href="sa.html">South America</a></li> <li><a href="eu.html">Europe</a></li> </ul> </div> </div> </body> </html>

  23. <!DOCTYPE html> <html> <head> <title> Sencha Touch </title> <script src="st.js"></script> <link rel="stylesheet" href="st.css" /> <script type="text/javascript" charset="utf-8"> new Ext.Application ({ launch: function() { var continents = new Ext.data.Store ({ model : Ext.regModel('', {fields: ['name', 'link']}), data: [ {name: 'North America', link:'na'}, {name: 'South America', link:'sa'}, {name: 'Europe', link:'eu'} ] }); new Ext.Panel ({ fullscreen: true, dockedItems: [{ xtype: 'toolbar', title: 'Hello World', }], items: [{ xtype: 'list', store : continents, itemTpl : '{name}' }] }); } }); </script> </head> <body></body> </html>

  24. One Web stack request User interface Rendering response Business logic Storage server client

  25. An Alternative Web Stack User interface sync API Business logic Storage Storage server client

  26. But there is a a place for both

  27. But...

  28. HTML5 apps can’t match native performance (true, sometimes)

  29. http://vimeo.com/30296006 http://vimeo.com/30324079

  30. Are HTML5 apps more e ffi cient to develop? (yes, in theory, but it’s early days)

  31. 24 dev-months for iOS http://blog.cohen-rose.org/2011/10/over-air-2011-ft-web-app-weve-got.html

  32. 12 further dev-months for Android & BlackBerry http://blog.cohen-rose.org/2011/10/over-air-2011-ft-web-app-weve-got.html

  33. ...but more engagement than the native app

  34. Mobile HTML5 development lacks good tooling (yes)

  35. http://github.com/jamesgpearce/confess

  36. Weinre

  37. HTML5 apps can’t be monetized, can’t be distributed (not a technology problem)

  38. Web Compromise sites Web apps Hybrid apps Native apps Nativeness

  39. Camera WebFont Video Audio Graphics HTTP Location AJAX CSS Styling & Layout Contacts Events JavaScript SMS Sockets Orientation SSL Semantic HTML Gyro File Systems Workers & Cross-App Databases Parallel Messaging App Caches Processing

  40. Browser Camera WebFont Video Audio Graphics HTTP Location AJAX CSS Styling & Layout Contacts Events JavaScript SMS Sockets Orientation SSL Semantic HTML Gyro File Systems Workers & Cross-App Databases Parallel Messaging App Caches Processing

  41. Native Wrapper WebView Camera WebFont Video Audio Graphics HTTP Location AJAX CSS Styling & Layout Contacts Events JavaScript SMS Sockets Orientation SSL Semantic HTML Gyro File Systems Workers & Cross-App Databases Parallel Messaging App Caches Processing

  42. Native app stores have a dirty secret

  43. HTML5 apps can’t access device functionality (goddamn it)

  44. Native Wrapper WebView Camera WebFont Video Audio Graphics HTTP Location AJAX CSS Styling & Layout Contacts Events JavaScript SMS Sockets Orientation SSL Semantic HTML Gyro File Systems Workers & Cross-App Databases Parallel Messaging App Caches Processing

  45. Hybrid apps - the ultimate polyfill

  46. PhoneGap^H^H^H Apache Callback AppMobi NimbleKit

  47. Recent browser updates

  48. iOS 5 Input types contenteditable position:fixed classList XHR2 Script defer & async Inline SVG Web Workers

  49. overflow: scroll; -webkit-overflow-scrolling: touch;

  50. http://jamesgpearce.github.com/compios5/

  51. Android 4 SVG at all CSS3 3D transforms classList XHR2 Script defer & async <details> & <summary> File reader Device orientation Navigation timing

  52. window.performance

  53. <input type="file" id="picker" accept="image/*" capture="camera" > // camcorder // microphone // filesystem var image = picker.files[0];

  54. The Prestige

  55. Sir Isaac Newton

  56. Three Laws of Motion (the universe works as we might expect it to)

  57. Albert Michelson Edward Morley

  58. Light Travels at a Constant Speed (the universe doesn’t work as we thought it would)

  59. Relativistic Mechanics Exploration Classical Mechanics Familiarity Quantum Mechanics Exploration

  60. The Web Today is like Physics in 1900

  61. Mobile is our Michelson-Morley Experiment

  62. Apps or Sites? Responsive Design? Browser diversity? Mobile Context? One Web? (an inability to answer these questions does not constitute an excuse not to innovate)

  63. What does the web look like when you have...

  64. Camera Microphone Contacts Calendar Messaging Telephony NFC ?

  65. Media Capture (API) Media Capture (HTML) Application Registration Battery status Calendar Contacts Feature Permissions Messaging (SMS, MMS...) Sensor API Network Information API Vibration API Menu API Audio Volume Permissions for APIs Beep Gallery Systems info and events Tasks

  66. APDU (SmartCard) Accelerometer Bluetooth Orientation Crypto Camera DLNA DeviceStatus Server Push Filesystem Sensor Messaging Telephony Geolocation PIM Contacts Calendar Tasks DeviceInteraction

  67. Telephony Messaging Contacts Clock Camera Filesystem Calculator Device Status Settings Accelerometer Mouse Lock Maps

  68. The mobile web becomes more than a 320px web

  69. window.addEventListener( 'appointmentdue', function(appt) { if (device.near(WORK)) { siri.remind( contacts.get('Peter'), calendar.getDetails(appt) ); } }, false ); (PS: This code does not work. Yet)

  70. Mobile device APIs are the web’s next great leap forward

  71. James Pearce @ jamespearce

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend