SlideShare a Scribd company logo
Mobile Development
Wednesday, September 25, 13
Brief introduction
to HTML5
Wednesday, September 25, 13
So what is HTML5?
It’s what comes after HTML4 right?
Actually it’s a 600 page specification
describing refinements and new additions to
HTML
Designed to address the needs of modern
web applications
Wednesday, September 25, 13
What’s cool about it?
Do cool shit in the browser without plugins
Create richer web experiences
Create web content which can be parsed by
machines. Welcome to the semantic web!
Add data attributes to HTML elements
Drag and drop (See: http://html5demos.com/
dnd-upload)
Wednesday, September 25, 13
What’s cool about it?
Geolocation - use GPS information to power
location aware applications
Canvas - graphics and animation
WebSockets - low level network
programming
LocalStorage - Key / Value store for local
data
Wednesday, September 25, 13
What’s cool about it?
WebSQL - store data in a local SQL database
WebGL - OpenGL 3D graphics for the web!
WebWorkers - Parallel programming in the
browser
SVG - Scalable Vector Graphics
Wednesday, September 25, 13
The three amigos:
HTML, JavaScript, CSS
Wednesday, September 25, 13
HTML5 features we'll
encounter in this
presentation
Data attributes
Canvas
LocalStorage
Geolocation
Wednesday, September 25, 13
What’s it good for?
Building modern web applications: Facebook,
Google Plus, YouTube, Cloud9 IDE (which we’ll
look at shortly)
Building mobile-friendly apps
Building games
Wednesday, September 25, 13
Featured HTML5 Games
Cut the rope: http://www.cuttherope.net
Cube Slam: https://www.cubeslam.com
HexGL: http://hexgl.bkcore.com
BananaBread: http://goo.gl/L7Vzv
Wednesday, September 25, 13
HTML5 Games recap
HTML5 and related tech empowers
compelling game experiences
HTML5 games on mobile will become
increasingly more common as HTML5 support
evolves in leading mobile web browsers.
Wednesday, September 25, 13
Coding with
HTML5
Wednesday, September 25, 13
Low cost of entry
Low cost to get started. Text editor and
browser might be all you need
Cooler ways exists to build and share small
HTML5 code snippets.
Wednesday, September 25, 13
HTML5 doc structure
Wednesday, September 25, 13
Wednesday, September 25, 13
Hello Web World
Wednesday, September 25, 13
Introducing jsfiddle.net
Wednesday, September 25, 13
jsfiddle.net: Hello World
Hello world: http://jsfiddle.net/cjus/2SKTv/
Wednesday, September 25, 13
jsfiddle.net: jQ Plugin
Segmentify plugin: http://jsfiddle.net/cjus/pNrgZ/
Wednesday, September 25, 13
Introducing Cloud9 IDE
Wednesday, September 25, 13
Introducing Cloud9 IDE
Wednesday, September 25, 13
Introducing Cloud9 IDE
Wednesday, September 25, 13
Great IDEs
Wednesday, September 25, 13
WebStorm IDE
Wednesday, September 25, 13
IDE takeaways
Lots of ways to develop web applications:
Locally and in the cloud
The tool you use should depend on your
needs.
Industrial strength IDEs are readily availble
Wednesday, September 25, 13
Deeper dive:
building HTML5
Wednesday, September 25, 13
Code walk-through:
html5-Canvas
https://c9.io/cjus/html5-canvas-1
Wednesday, September 25, 13
Code walk-through:
html5-animation
https://c9.io/cjus/html5-canvas-2
Wednesday, September 25, 13
Code walk-through:
html5-animation
https://c9.io/dougdodd/platypusgame
Wednesday, September 25, 13
Code walk-through:
html5-geolocation
https://c9.io/cjus/html5-geolocation
Wednesday, September 25, 13
Building Mobile
Apps
Wednesday, September 25, 13
The role of JavaScript
Many HTML5 features require code to bring
them to life
The HTML5 canvas demo we saw earlier is
one such example
However, programming those interactions
doesn’t have to be in JavaScript directly
Wednesday, September 25, 13
Using other languages
Today, transcoders exists to allow
programmers to code in other languages
Here are just a few: Google Dart,
CoffeeScript, Python, and custom
transcoders...
JavaScript is has been called the new
assembly language
Wednesday, September 25, 13
Mozilla
Built using a tool that compiles C++ and
OpenGL into JavaScript and WebGL.
Created in part to prove that games of this
nature can run in JavaScript and WebGL.
Wednesday, September 25, 13
jQuery
Programming the DOM sucks
jQuery makes it easier to code against the
DOM
Wednesday, September 25, 13
A jQuery Example
http://jsfiddle.net/cjus/Zn9aJ/
Wednesday, September 25, 13
jQuery and friends
Over the years jQuery became immensely
popular spawning other frameworks:
jQueryUI
jQueryMobile
Wednesday, September 25, 13
jQueryMobile (JQM)
User Interface Framework for popular mobile
devices
Built on jQuery and jQueryUI foundation
Wednesday, September 25, 13
How it works
Wednesday, September 25, 13
Hands on JQM Tutorial
https://c9.io/cjus/jquerymobilepresentation
Wednesday, September 25, 13
Code walk-through:
JQM Business Card App
https://c9.io/cjus/jquerymobile-business-card
Wednesday, September 25, 13
Creating app mockups
using JQM
jQueryMobile can be used to create
application mockups without writing a single
line of code!
Wednesday, September 25, 13
codiqa: UI mobile builder
https://codiqa.com
Wednesday, September 25, 13
Introducing PhoneGap
Wednesday, September 25, 13
Wednesday, September 25, 13
Wednesday, September 25, 13
Phoast
Phoast is my personal project which
combines my interest in web development
with my interest in Photography
I’m using the Phoast backend with a new
mobile application I’ve created PhoastXplora
Wednesday, September 25, 13
PhoastXplorer FrontEnd
HTML5 Mobile app written using
jQueryMobile
Communicates with Phoast backend using
RESTful APIs
Packaged as a PhoneGap app for deployment
to mobile devices
Wednesday, September 25, 13
PhoastXplora
Wednesday, September 25, 13
Phoast Backend
An API server written in JavaScript and
running on NodeJS
Server backend uses MongoDB and Redis
Communicates with Google, Weather.com,
Yahoo API servers.
Wednesday, September 25, 13
Code walk-though:
PhoastXplora
Wednesday, September 25, 13
Quick recap
In this presentation we’ve looked at HTML5
and related features.
We’ve built simple mobile applications using
HTML5 and jQuery and jQueryMobile
We’ve used PhoneGap to build and deploy an
HTML5 based mobile app to physical
hardware.
Wednesday, September 25, 13
What’s next?
Wednesday, September 25, 13
Next steps:
Learn more at key sites
HTML5Rocks:
http://www.html5rocks.com
jQueryMobile site:
http://www.jquerymobile.com
TIP: visit it on your mobile device!
PhoneGap site:
http://www.phonegap.com
Wednesday, September 25, 13
Next steps:
Read one of many great
books
Wednesday, September 25, 13
Next steps:
Watch Lynda.com vids
jQuery Mobile Web Applications (3hrs 13mins)
jQuery Mobile Essential Training (3hrs 11mins)
Up and Running with PhoneGap (1hrs 57mins)
HTML5 for Flash Developers (3hrs 16mins)
and many more HTML5 videos!
Wednesday, September 25, 13
Reflecting on
HTML5
HTML5 is approachable tech
Easy to explore
Useful for mobile dev
Here to stay
Cause for reflection
Wednesday, September 25, 13

More Related Content

PDF
Cutting edge of web technology
PDF
Building Your Start-Up with WordPress
PDF
The Immersive Web
PDF
Virtually Anyone
PDF
Animating Xamarin.Forms
PPTX
Adobe Edge Animate and Captivate 8
PPTX
Developing .NET MVC websites using Kentico Cloud - webinar intro
PDF
Build your own Website
Cutting edge of web technology
Building Your Start-Up with WordPress
The Immersive Web
Virtually Anyone
Animating Xamarin.Forms
Adobe Edge Animate and Captivate 8
Developing .NET MVC websites using Kentico Cloud - webinar intro
Build your own Website

What's hot (20)

PPTX
PDF
HTML GL - возьмите столько FPS, сколько вам нужно!
PPTX
Introduction to Kentico Cloud - the headless CMS and digital experience platform
PDF
TechEvent BASTA von WPF nach Angular in 60 Minuten
PDF
Applying Responsive Web Design (RWD) to UA - WritersUA East 2015, Scott DeLoa...
PDF
HTML GL - 60 FPS and amazing effects by rendering HTML/CSS in WebGL, framewor...
PPTX
The Startup Platform Website Bootcamp
PDF
A Period of Transition
PDF
Zero cost serverless Real time web app
PDF
Pcm Hand Out
PPTX
boots2nerd
PDF
Getting design right with HTML prototypes for Clarks
PDF
User Experience for WordPress Platforms
PDF
Progressive web apps - prepare your web for 2017 (Devfest Ukraine 2016)
PPT
How to build websites FAST!!!
PDF
Core Web Standards and Competencies - WritersUA East 2015, Scott DeLoach, Cli...
PDF
BBC Olympics: An accessibility case study
PPTX
Web Components in Action: building reusable components for web development
PDF
Foundations of the Immersive Web
PDF
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
HTML GL - возьмите столько FPS, сколько вам нужно!
Introduction to Kentico Cloud - the headless CMS and digital experience platform
TechEvent BASTA von WPF nach Angular in 60 Minuten
Applying Responsive Web Design (RWD) to UA - WritersUA East 2015, Scott DeLoa...
HTML GL - 60 FPS and amazing effects by rendering HTML/CSS in WebGL, framewor...
The Startup Platform Website Bootcamp
A Period of Transition
Zero cost serverless Real time web app
Pcm Hand Out
boots2nerd
Getting design right with HTML prototypes for Clarks
User Experience for WordPress Platforms
Progressive web apps - prepare your web for 2017 (Devfest Ukraine 2016)
How to build websites FAST!!!
Core Web Standards and Competencies - WritersUA East 2015, Scott DeLoach, Cli...
BBC Olympics: An accessibility case study
Web Components in Action: building reusable components for web development
Foundations of the Immersive Web
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
Ad

Similar to HTML5 for mobile development (20)

PDF
Having Fun Building Web Applications (Day 1 Slides)
PDF
jQuery Mobile Deep Dive
PDF
HTML5 Technical Executive Summary
PDF
Building a Better Web with HTML5 and CSS3
PPTX
Mobile applications for SharePoint using HTML5
PDF
Intro to-html-backbone-angular
PPT
Intro to-html-backbone
PDF
Basics of css and xhtml
PDF
HTML5 development in 30 minutes
PDF
Hello HTML5 CSS3 A user friendly reference guide 1st Edition Rob Crowther
PPTX
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
PDF
Intro to mobile web application development
PDF
Hello Html5 Css3 A User Friendly Reference Guide Rob Crowther
PDF
Apress.html5.and.java script.projects.oct.2011
PPTX
Fundamentals of HTML5
PPTX
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
PDF
HTML5: An Introduction
PDF
Finding harmony in web development
PDF
HTML5 & CSS3 refresher for mobile apps
PPTX
HTML5: An Overview
Having Fun Building Web Applications (Day 1 Slides)
jQuery Mobile Deep Dive
HTML5 Technical Executive Summary
Building a Better Web with HTML5 and CSS3
Mobile applications for SharePoint using HTML5
Intro to-html-backbone-angular
Intro to-html-backbone
Basics of css and xhtml
HTML5 development in 30 minutes
Hello HTML5 CSS3 A user friendly reference guide 1st Edition Rob Crowther
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Intro to mobile web application development
Hello Html5 Css3 A User Friendly Reference Guide Rob Crowther
Apress.html5.and.java script.projects.oct.2011
Fundamentals of HTML5
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
HTML5: An Introduction
Finding harmony in web development
HTML5 & CSS3 refresher for mobile apps
HTML5: An Overview
Ad

Recently uploaded (20)

PPT
Teaching material agriculture food technology
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Cloud computing and distributed systems.
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
Chapter 3 Spatial Domain Image Processing.pdf
Teaching material agriculture food technology
Advanced methodologies resolving dimensionality complications for autism neur...
Review of recent advances in non-invasive hemoglobin estimation
MIND Revenue Release Quarter 2 2025 Press Release
MYSQL Presentation for SQL database connectivity
Mobile App Security Testing_ A Comprehensive Guide.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Cloud computing and distributed systems.
Diabetes mellitus diagnosis method based random forest with bat algorithm
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
The AUB Centre for AI in Media Proposal.docx
Reach Out and Touch Someone: Haptics and Empathic Computing
Dropbox Q2 2025 Financial Results & Investor Presentation
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Unlocking AI with Model Context Protocol (MCP)
Digital-Transformation-Roadmap-for-Companies.pptx
Empathic Computing: Creating Shared Understanding
Chapter 3 Spatial Domain Image Processing.pdf

HTML5 for mobile development