SlideShare ist ein Scribd-Unternehmen logo
1 von 41
Downloaden Sie, um offline zu lesen
HTML 5 Development
for Windows Phone
and Windows Desktop
Ben Riga                       Doris Chen Ph.D.
Technical Evangelist           Developer Evangelist
Windows Phone                  US West Region
benriga@microsoft.com          Doris.Chen@microsoft.com
@benriga                       @doristchen
http://blogs.msdn.com/benriga/ http://blogs.msdn.com/dorischen/




Bay Area Mobile Meetup Oct 6, 2011
Agenda
   Windows Phone – A Quick Look
   Microsoft and HTML 5
   Internet Explorer on the desktop, Windows
    Phone
   A preview of PhoneGap on Windows
    Phone
A quick look at
  Windows Phone


Windows Phone Microsoft confidential.
People   vs.   Icons
Windows Phone puts people at the center making it easier to connect and share with friends,
    family and colleagues, so you never miss a moment.


    Modern communication                 A smarter way                        Internet
    built in.                            to app.                              beyond the browser.
     People Hub with Facebook,           Pin apps to the Start screen for    A fast, beautiful web experience
      LinkedIn and Twitter, built in.      live updates at a glance.            with Internet Explorer 9 and
                                                                                hardware acceleration.
     Group friends, pin them to Start    Apps connected to your searches
      for live updates and text, email     make them easier to discover        Local Scout provides suggestions
      and IM them all at once.             and use.                             and prioritized local search
                                                                                results on restaurants, shopping
     Facebook Chat, Messenger,                                                 and things to do.
      check-ins, and photo tagging
      built in.




5
Agenda
 Windows Phone – A Quick Look
 Microsoft and HTML 5
 Internet Explorer on the desktop, Windows Phone
 A preview of PhoneGap on Windows Phone
A quick look at
  Windows Phone


Windows Phone Microsoft confidential.
People   vs.   Icons
Windows Phone puts people at the center making it easier to connect and share with friends,
    family and colleagues, so you never miss a moment.


    Modern communication                 A smarter way                        Internet
    built in.                            to app.                              beyond the browser.
     People Hub with Facebook,           Pin apps to the Start screen for    A fast, beautiful web experience
      LinkedIn and Twitter, built in.      live updates at a glance.            with Internet Explorer 9 and
                                                                                hardware acceleration.
     Group friends, pin them to Start    Apps connected to your searches
      for live updates and text, email     make them easier to discover        Local Scout provides suggestions
      and IM them all at once.             and use.                             and prioritized local search
                                                                                results on restaurants, shopping
     Facebook Chat, Messenger,                                                 and things to do.
      check-ins, and photo tagging
      built in.




9
Microsoft and HTML 5


Windows Phone Microsoft confidential.
What Developers Told Us
   Interoperability and Same Markup
        HTML5 Canvas, Audio, Video, XHTML, SVG, DOM L2 Core, DOM
         L2 & L3 Events, CSS3 Selectors, DOM Traversal, DOM Range,
         HTML5 Parsing, etc.
   Performance
        Holistic Focus on Performance, Faster JavaScript, GPU Powered
         Graphics
   Websites more like native applications
        Reducing the User Interface surface area, Unlocking the
         Hardware
   Safe and Trusted Browsing
        No ActiveX Controls, no Browser Helper Objects, no Plug-ins or
         Binary Behaviors
Understanding Today’s Sites
                                  API Usage Over Top 7200 Sites
                  8000
                  7000                          API                Rank    %
                  6000                          indexOf            1       94%
Number of Sites




                  5000                          getElementById     13      80%
                  4000                          addEventListener   27      65%
                  3000                          getComputedStyle 62        26%
                  2000
                  1000
                    0
                         1   51 101 151 201 251 301 351 401 451 501 551 601 651 701
                                                 API (By Rank)
100+ Specifications




                                           Geolocation
                                             ECMA
HTML   CSS                Web Apps   SVG
Microsoft Approach with HTML5
Internet Explorer on the
  desktop,
  Windows Phone

Windows Phone Microsoft confidential.
HTML5 in IE9
       HTML5                 CSS3                  SVG                     Others

• New Markup       •   2D Transforms       • Shapes              • ECMA Script 5 (all
  Elements         •   Border Radius       • Clipping,             but Strict Mode)
• Canvas           •   Box-Shadow            Masking, and        • Native JSON
• Audio            •   Fonts (WOFF)          Compositing           support (IE8)
• Video            •   Media Queries       • Transforms          • Performance API
• Local Storage    •   Multiple            • Extensibility       • Geo-Location
• Cross-Window         Backgrounds         • Gradients           • Data-uri (IE8)
  Messaging        •   Namespaces          • Interactivity       • DOM L2, L3
• Text Selection   •   Opacity             • Linking and Views   • Selectors API L2
  APIs             •   rgba(), hsl(),      • Painting and        • AJAX Navigation
• Parsing SVG in                             Colors                (IE8)
                       hsla()
  HTML                                     • Paths               • DOMParser and
                   •   Selectors (IE8)
                                                                   XMLSerializer
                                           • Text
                                                                 • ICC v2 and Color
                                                                   Profile
                                                                 • ARIA
                               Hardware Acceleration
HTML5 in IE10 Platform Previews

        HTML5                   CSS3            Others

•   Drag&Drop          •   Grid           • Web Performance
•   File API           •   Flexbox          APIs
•   Forms Validation   •   Gradient       • ECMA Script 5
•   Sandbox            •   Multi-Column     Strict Mode
•   Web Workers        •   Floats         • Advanced Hit
                                            Testing APIs
•   async
                                          • Media Queries
                                            Listeners
                                          • Removal of Style
                                            Sheet Limits
Partial Summary of IE9 Windows Phone Support

 HTML5 Canvas           2D Transforms           Colors Module
 HTML5 Video            Background/Borders      Namespaces
 SVG                    Fonts Module            Values & Units
 HTML5 Audio            CSS Media Queries       Selectors


 DOM Core Level 2/.3    Geolocation             Semantic Elements

 Traversal & Range      ECMAScript 5            XML Parse/Serial

 DOM Events Level 2/3   Selector APIs Level 2   DataURIs

 L2 HTML & Style        ICC Color Profiles      CSSOM View
Key IE9 Mango Features
Key IE9 Windows Phone Technologies for Mobile


    •   Support for Viewport <meta> tag
    •   Support for W3C Geolocation, including GPS
    •   Full support for CSS Media Queries

•   DOM Local Storage and Session Storage

•   Data URIs
Controlling the Viewport




<META name="HandheldFriendly" content="true" />

<META name="MobileOptimized" content="320" />

<META name="Viewport" content="width=device-width" />
Controlling the Viewport


 Viewport Property   Description
 width               Sets the width of the viewport. Can be either an integer value
                     or "device-width". Defaults to 1024 on Windows Phone, 980
                     on iPhone
 height              Sets the height of the viewport. Can be either an integer value
                     or "device-height".
 initial-scale       Sets the initial scale value of the viewport. Defaults to 1.0.
 maximum-scale       Determines the maximum scale value of the viewport. Range
                     is from 0.1 to 10.0
 minimum-scale       Determines the minimum scale value of the viewport. Range is
                     from 0.1 to 10.0
 user-scalable       Boolean that determines whether the user can scale the
                     viewport
Using Media Queries
   Provide a way of applying style sheets based upon certain
    characteristics of the media
       Window size, screen size, aspect ratio, color depth,
        resolution, etc.
   Are a W3C candidate recommendation as of July 2010
   Specification can be found at
       http://www.w3.org/TR/css3-mediaqueries/

    <link rel="stylesheet" media="screen and
    (max-width:800)" href="example.css" />
    Or…
    @media screen and (max-width:800) {
       /* style definitions that apply to
    screens less than 800px wide */
    }
Using Media Queries
 Media Query     Description
 Feature
 width           Indicates an output surface, such as a window, of exactly
                 width units (px, etc.)
 height          Indicates an output surface, such as a window of exactly
                 height units
 device-width    Indicates a device that has exactly the given width, in given
                 units
 device-height   Indicates a device that has exactly the given height, in
                 given units
 orientation     Used with “portrait” or “landscape” for devices that can do
                 both.
Using Media Queries
   <link rel=“stylesheet” media=“screen and (max-device-width:800px)”
   href=“styles.css”>

   @media screen and (max-device-width:800px) {
      /* style definitions that apply to screens less than 800px wide
   */
   }



   <link rel=“stylesheet” media=“screen and (min-width:480px) and
   (max-width:800px)” href=“styles.css”>

   @media screen and (min-width:480px) and (max-width:800px){
      /* style definitions that apply to screens less than 800px wide
   */
   }



   http://mediaqueri.es/popular/
Geolocation
 Geolocation allows a phone to figure out where it is
    IP Address location or Wireless network location
    Triangulation of cellular towers
    GPS device that uses satellite signals
 Can get location as a "one-shot" or continuously
 Location is always opt-in
    “User Agents must not send location information to
     Web sites without the express permission of the user.”
 W3C Geolocation API
    http://www.w3.org/TR/geolocation-API/
Geolocation



API:
  getCurrentPosition(successFn, errFn, options)
  watchPosition(successFn, errFn, options)
  clearWatch(watchID)

  successFn( positionObject )
  errFn( positionErrorObject )
Client-side LocalStorage / SessionStorage
   Provides easier way of storing data on client without
    cookies
DOM Storage API
Available from the window object:
      window.localStorage
      window.sessionStorage




    getItem(key)
    setItem(key, value)
    removeItem(key)
    clear()
    key(index)
    length
Things to remember about DOM Storage
 Data is stored as strings – if you store other types, you
  must convert them yourself
 Example:
      setItem("mysite.product.price", 59.99);
      var price = parseFloat("mysite.product.price");
 If you try to store more than 5MB, an exception of type
  QUOTA_EXCEEDED_ERR is thrown
 There is currently no way to request an increase in the
  available storage space in any of the browsers
The data:// URI
 Defines a way for embedding content such as images
  directly inline into markup or CSS content
 Used to reduce the number of HTTP requests
 IE9 allows data URIs up to 4GB in size
 General Format:


    data:[mime-type][;base64],<image data as text>
Data URI Usage
   Use data URIs in place of normal URLs:

      HTML

        Replaces:
                <img src=“http://imagename.png” />
             With:<img src=“data:image/png;base64,00af037491806ed...” />



      CSS

        Replaces:
               .rule { background-image:url(‘http://imagename.png’) }
             With:.rule { background-image:
                          url(‘data:image/png;base64,00af037491806ed...’) }
Where to from here?


Windows Phone Microsoft confidential.
Looking forward




                  Windows 8
                  Preview Guide
                  Developer Preview Builds
                  Dev Tools
                  Conf Sessions

                      http://dev.windows.com
PhoneGap on
  Windows Phone
  (a preview)


Windows Phone Microsoft confidential.
PhoneGap
 Open Source project for building mobile apps using web
  technologies
     HTML, Javascript, CSS
     http://PhoneGap.com
 Across multiple platforms
     iOS, Android, etc and soon Windows Phone
 Maintained by Nitobi (recently acquired by Adobe)
 Access to native APIs
     Accelerometer, Camera, Compass, Connection,
      Contacts, Device, Events, File, Geolocation, Media,
      Notification, Storage
PhoneGap on Windows Phone
 Currently includes:
    Accelerometer, Camera, Compass, Contacts,
     Events (partial, still underway), GeoLocation,
     MediaCapture, Connection, Notification
 Requires installation
    Windows Phone SDK 7.1 (which includes VS 2010)
 Getting Started Info here:
    http://bit.ly/PhoneGapMangoIntro
 Code Here
    https://github.com/phonegap/phonegap-wp7
PhoneGap on
  Windows Phone
  (a demo)


Windows Phone Microsoft confidential.
Next Steps
Internet Explorer                    Windows Phone
   Internet Explorer Test Drive        Download SDK
       http://bit.ly/ietestdrive/         Includes Dev Tools and
   http://BeautyOfTheWeb.com                Emulator
                                           http://create.msdn.com

Windows 8                               Mobile Internet Explorer Test
                                         Drive
 Preview Guide
                                           http://bit.ly/IEmobile
 Developer Preview Builds
 Dev Tools
 Conf Sessions
        http://dev.windows.com
HTML 5 Development
for Windows Phone
and Windows Desktop
Ben Riga                       Doris Chen, Ph.D.
Technical Evangelist           Developer Evangelist
Windows Phone                  US West Region
benriga@microsoft.com          Doris.Chen@microsoft.com
@benriga                       @doristchen
http://blogs.msdn.com/benriga/ http://blogs.msdn.com/dorischen/




Bay Area Mobile Meetup Oct 6, 2011
The information herein is for informational purposes only and represents the current view of
                                          Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to
                                          changing market conditions, it should not be interpreted to be a commitment on the part of
                                          Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the
                                          date of this presentation.

                                          MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE
                                          INFORMATION IN THIS PRESENTATION.




© 2011 Microsoft Corporation.

All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.

Weitere ähnliche Inhalte

Was ist angesagt?

Domino app dev competitive advantage for blug
Domino app dev competitive advantage for blugDomino app dev competitive advantage for blug
Domino app dev competitive advantage for blugJohn Head
 
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...Simon Guest
 
Grameen Solutions Technology Skills
Grameen Solutions   Technology SkillsGrameen Solutions   Technology Skills
Grameen Solutions Technology SkillsGrameen Solutions
 
Preparing for Office 365
Preparing for Office 365Preparing for Office 365
Preparing for Office 365Jan Egil Ring
 
Super feats of integration x pages with symphony sharepoint and office
Super feats of integration  x pages with symphony sharepoint and officeSuper feats of integration  x pages with symphony sharepoint and office
Super feats of integration x pages with symphony sharepoint and officeJohn Head
 
Lotus domino Portfolio Overview - v8.5.3
Lotus domino Portfolio Overview - v8.5.3Lotus domino Portfolio Overview - v8.5.3
Lotus domino Portfolio Overview - v8.5.3Vikas Tiwari
 
Usability In Mobile Applications
Usability In Mobile ApplicationsUsability In Mobile Applications
Usability In Mobile ApplicationsBruno Figueiredo
 
PresentaciÃ3n: FootPrints 6.6
PresentaciÃ3n: FootPrints 6.6PresentaciÃ3n: FootPrints 6.6
PresentaciÃ3n: FootPrints 6.6webhostingguy
 
Real-world Dojo Mobile
Real-world Dojo MobileReal-world Dojo Mobile
Real-world Dojo MobileAndrew Ferrier
 
Tech talk - Microsoft A.I.
Tech talk - Microsoft A.I.Tech talk - Microsoft A.I.
Tech talk - Microsoft A.I.Cheah Eng Soon
 
ILUG2008 Notes Domino the Road Ahead
ILUG2008 Notes Domino the Road AheadILUG2008 Notes Domino the Road Ahead
ILUG2008 Notes Domino the Road AheadEd Brill
 
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...John Head
 
UX@Vitra - Experience Continuum
UX@Vitra - Experience ContinuumUX@Vitra - Experience Continuum
UX@Vitra - Experience ContinuumKatrien De Graeve
 
Personalized Filtering of Twitter Stream
Personalized Filtering of Twitter StreamPersonalized Filtering of Twitter Stream
Personalized Filtering of Twitter StreamPavan Kapanipathi
 
Building & Managing The Lifecycle of Mobile Apps For The Enterprise
Building & Managing The Lifecycle of Mobile Apps For The EnterpriseBuilding & Managing The Lifecycle of Mobile Apps For The Enterprise
Building & Managing The Lifecycle of Mobile Apps For The EnterpriseApperian
 
"BlackBerry Webworks : Apps for The Smartphone and Tablet"
"BlackBerry Webworks : Apps for The Smartphone and Tablet""BlackBerry Webworks : Apps for The Smartphone and Tablet"
"BlackBerry Webworks : Apps for The Smartphone and Tablet"Software Park Thailand
 
Notes Domino Symphony Strategy May2009
Notes Domino Symphony Strategy May2009Notes Domino Symphony Strategy May2009
Notes Domino Symphony Strategy May2009Ed Brill
 

Was ist angesagt? (20)

Domino app dev competitive advantage for blug
Domino app dev competitive advantage for blugDomino app dev competitive advantage for blug
Domino app dev competitive advantage for blug
 
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
 
Grameen Solutions Technology Skills
Grameen Solutions   Technology SkillsGrameen Solutions   Technology Skills
Grameen Solutions Technology Skills
 
Preparing for Office 365
Preparing for Office 365Preparing for Office 365
Preparing for Office 365
 
Super feats of integration x pages with symphony sharepoint and office
Super feats of integration  x pages with symphony sharepoint and officeSuper feats of integration  x pages with symphony sharepoint and office
Super feats of integration x pages with symphony sharepoint and office
 
Lotus domino Portfolio Overview - v8.5.3
Lotus domino Portfolio Overview - v8.5.3Lotus domino Portfolio Overview - v8.5.3
Lotus domino Portfolio Overview - v8.5.3
 
Usability In Mobile Applications
Usability In Mobile ApplicationsUsability In Mobile Applications
Usability In Mobile Applications
 
AIS SharePoint & BI Presentation 24th july 2012
AIS SharePoint & BI Presentation 24th july 2012AIS SharePoint & BI Presentation 24th july 2012
AIS SharePoint & BI Presentation 24th july 2012
 
PresentaciÃ3n: FootPrints 6.6
PresentaciÃ3n: FootPrints 6.6PresentaciÃ3n: FootPrints 6.6
PresentaciÃ3n: FootPrints 6.6
 
Real-world Dojo Mobile
Real-world Dojo MobileReal-world Dojo Mobile
Real-world Dojo Mobile
 
Tech talk - Microsoft A.I.
Tech talk - Microsoft A.I.Tech talk - Microsoft A.I.
Tech talk - Microsoft A.I.
 
ILUG2008 Notes Domino the Road Ahead
ILUG2008 Notes Domino the Road AheadILUG2008 Notes Domino the Road Ahead
ILUG2008 Notes Domino the Road Ahead
 
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...
UKLUG - IBM Lotus Notes/Domino Application Development Competitive Advantage ...
 
UX@Vitra - Experience Continuum
UX@Vitra - Experience ContinuumUX@Vitra - Experience Continuum
UX@Vitra - Experience Continuum
 
Personalized Filtering of Twitter Stream
Personalized Filtering of Twitter StreamPersonalized Filtering of Twitter Stream
Personalized Filtering of Twitter Stream
 
Luis Martins
Luis MartinsLuis Martins
Luis Martins
 
Building & Managing The Lifecycle of Mobile Apps For The Enterprise
Building & Managing The Lifecycle of Mobile Apps For The EnterpriseBuilding & Managing The Lifecycle of Mobile Apps For The Enterprise
Building & Managing The Lifecycle of Mobile Apps For The Enterprise
 
"BlackBerry Webworks : Apps for The Smartphone and Tablet"
"BlackBerry Webworks : Apps for The Smartphone and Tablet""BlackBerry Webworks : Apps for The Smartphone and Tablet"
"BlackBerry Webworks : Apps for The Smartphone and Tablet"
 
Web Sphere Portal
Web Sphere PortalWeb Sphere Portal
Web Sphere Portal
 
Notes Domino Symphony Strategy May2009
Notes Domino Symphony Strategy May2009Notes Domino Symphony Strategy May2009
Notes Domino Symphony Strategy May2009
 

Ähnlich wie HTML 5 Development for Windows Phone and Desktop

Windows phone 7 Introduction
Windows phone 7 Introduction Windows phone 7 Introduction
Windows phone 7 Introduction Abdullah Muhammad
 
What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!James Montemagno
 
HTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applicationsHTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applicationsJames Pearce
 
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTP
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTPMike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTP
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTPukdpe
 
Cross platform mobile app
Cross platform mobile appCross platform mobile app
Cross platform mobile appHong Liu
 
Building Rich Mobile Apps with HTML5, CSS3 and JavaScript
Building Rich Mobile Apps with HTML5, CSS3 and JavaScriptBuilding Rich Mobile Apps with HTML5, CSS3 and JavaScript
Building Rich Mobile Apps with HTML5, CSS3 and JavaScriptSencha
 
Cross platform mobile development with Corona
Cross platform mobile development with CoronaCross platform mobile development with Corona
Cross platform mobile development with CoronaKMS Technology
 
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator TitaniumMobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator TitaniumJeff Haynie
 
Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0Jeff Haynie
 
DevTeach Ottawa - Silverlight5 and HTML5
DevTeach Ottawa - Silverlight5 and HTML5DevTeach Ottawa - Silverlight5 and HTML5
DevTeach Ottawa - Silverlight5 and HTML5Frédéric Harper
 
An Intro to Mobile HTML5
An Intro to Mobile HTML5An Intro to Mobile HTML5
An Intro to Mobile HTML5James Pearce
 
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web Simulator
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web SimulatorOSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web Simulator
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web SimulatorGail Frederick
 
Building Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsBuilding Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsJames Pearce
 
An Introduction to Microsoft Edge
An Introduction to Microsoft EdgeAn Introduction to Microsoft Edge
An Introduction to Microsoft EdgeChris Love
 
Synapse india reviews on mobile application development
Synapse india reviews on mobile application developmentSynapse india reviews on mobile application development
Synapse india reviews on mobile application developmentsaritasingh19866
 
Developing Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGapDeveloping Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGapAmar Mesic
 
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefits
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefitsDevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefits
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefitsFrédéric Harper
 

Ähnlich wie HTML 5 Development for Windows Phone and Desktop (20)

Windows phone 7 Introduction
Windows phone 7 Introduction Windows phone 7 Introduction
Windows phone 7 Introduction
 
What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!
 
HTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applicationsHTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applications
 
Xamarin introduction
Xamarin introductionXamarin introduction
Xamarin introduction
 
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTP
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTPMike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTP
Mike Taulty TechDays 2010 Silverlight and Windows Phone 7 CTP
 
Cross platform mobile app
Cross platform mobile appCross platform mobile app
Cross platform mobile app
 
Building Rich Mobile Apps with HTML5, CSS3 and JavaScript
Building Rich Mobile Apps with HTML5, CSS3 and JavaScriptBuilding Rich Mobile Apps with HTML5, CSS3 and JavaScript
Building Rich Mobile Apps with HTML5, CSS3 and JavaScript
 
Cross platform mobile development with Corona
Cross platform mobile development with CoronaCross platform mobile development with Corona
Cross platform mobile development with Corona
 
Mobile for the rest of us
Mobile for the rest of usMobile for the rest of us
Mobile for the rest of us
 
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator TitaniumMobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
 
Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0
 
DevTeach Ottawa - Silverlight5 and HTML5
DevTeach Ottawa - Silverlight5 and HTML5DevTeach Ottawa - Silverlight5 and HTML5
DevTeach Ottawa - Silverlight5 and HTML5
 
An Intro to Mobile HTML5
An Intro to Mobile HTML5An Intro to Mobile HTML5
An Intro to Mobile HTML5
 
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web Simulator
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web SimulatorOSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web Simulator
OSCON 2012: Design and Debug HTML5 Apps for Devices with RIB and Web Simulator
 
Building Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsBuilding Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web Apps
 
An Introduction to Microsoft Edge
An Introduction to Microsoft EdgeAn Introduction to Microsoft Edge
An Introduction to Microsoft Edge
 
Synapse india reviews on mobile application development
Synapse india reviews on mobile application developmentSynapse india reviews on mobile application development
Synapse india reviews on mobile application development
 
20120802 timisoara
20120802 timisoara20120802 timisoara
20120802 timisoara
 
Developing Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGapDeveloping Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGap
 
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefits
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefitsDevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefits
DevTeach Montreal - 2012-12-11 - Windows 8 & HTML5: friends with benefits
 

Mehr von Doris Chen

Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016Doris Chen
 
Building Web Sites that Work Everywhere
Building Web Sites that Work EverywhereBuilding Web Sites that Work Everywhere
Building Web Sites that Work EverywhereDoris Chen
 
Angular mobile angular_u
Angular mobile angular_uAngular mobile angular_u
Angular mobile angular_uDoris Chen
 
Lastest Trends in Web Development
Lastest Trends in Web DevelopmentLastest Trends in Web Development
Lastest Trends in Web DevelopmentDoris Chen
 
Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!Doris Chen
 
OSCON Presentation: Developing High Performance Websites and Modern Apps with...
OSCON Presentation: Developing High Performance Websites and Modern Apps with...OSCON Presentation: Developing High Performance Websites and Modern Apps with...
OSCON Presentation: Developing High Performance Websites and Modern Apps with...Doris Chen
 
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps Faster
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps FasterPractical Performance Tips and Tricks to Make Your HTML/JavaScript Apps Faster
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps FasterDoris Chen
 
Developing High Performance Websites and Modern Apps with JavaScript and HTML5
Developing High Performance Websites and Modern Apps with JavaScript and HTML5Developing High Performance Websites and Modern Apps with JavaScript and HTML5
Developing High Performance Websites and Modern Apps with JavaScript and HTML5Doris Chen
 
What Web Developers Need to Know to Develop Native HTML5/JS Apps
What Web Developers Need to Know to Develop Native HTML5/JS AppsWhat Web Developers Need to Know to Develop Native HTML5/JS Apps
What Web Developers Need to Know to Develop Native HTML5/JS AppsDoris Chen
 
Windows 8 Opportunity
Windows 8 OpportunityWindows 8 Opportunity
Windows 8 OpportunityDoris Chen
 
Wins8 appfoforweb fluent
Wins8 appfoforweb fluentWins8 appfoforweb fluent
Wins8 appfoforweb fluentDoris Chen
 
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...Doris Chen
 
What Web Developers Need to Know to Develop Windows 8 Apps
What Web Developers Need to Know to Develop Windows 8 AppsWhat Web Developers Need to Know to Develop Windows 8 Apps
What Web Developers Need to Know to Develop Windows 8 AppsDoris Chen
 
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Doris Chen
 
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Doris Chen
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3Doris Chen
 
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Doris Chen
 
Practical HTML5: Using It Today
Practical HTML5: Using It TodayPractical HTML5: Using It Today
Practical HTML5: Using It TodayDoris Chen
 
Dive Into HTML5
Dive Into HTML5Dive Into HTML5
Dive Into HTML5Doris Chen
 
Practical HTML5: Using It Today
Practical HTML5: Using It TodayPractical HTML5: Using It Today
Practical HTML5: Using It TodayDoris Chen
 

Mehr von Doris Chen (20)

Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016
 
Building Web Sites that Work Everywhere
Building Web Sites that Work EverywhereBuilding Web Sites that Work Everywhere
Building Web Sites that Work Everywhere
 
Angular mobile angular_u
Angular mobile angular_uAngular mobile angular_u
Angular mobile angular_u
 
Lastest Trends in Web Development
Lastest Trends in Web DevelopmentLastest Trends in Web Development
Lastest Trends in Web Development
 
Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!
 
OSCON Presentation: Developing High Performance Websites and Modern Apps with...
OSCON Presentation: Developing High Performance Websites and Modern Apps with...OSCON Presentation: Developing High Performance Websites and Modern Apps with...
OSCON Presentation: Developing High Performance Websites and Modern Apps with...
 
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps Faster
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps FasterPractical Performance Tips and Tricks to Make Your HTML/JavaScript Apps Faster
Practical Performance Tips and Tricks to Make Your HTML/JavaScript Apps Faster
 
Developing High Performance Websites and Modern Apps with JavaScript and HTML5
Developing High Performance Websites and Modern Apps with JavaScript and HTML5Developing High Performance Websites and Modern Apps with JavaScript and HTML5
Developing High Performance Websites and Modern Apps with JavaScript and HTML5
 
What Web Developers Need to Know to Develop Native HTML5/JS Apps
What Web Developers Need to Know to Develop Native HTML5/JS AppsWhat Web Developers Need to Know to Develop Native HTML5/JS Apps
What Web Developers Need to Know to Develop Native HTML5/JS Apps
 
Windows 8 Opportunity
Windows 8 OpportunityWindows 8 Opportunity
Windows 8 Opportunity
 
Wins8 appfoforweb fluent
Wins8 appfoforweb fluentWins8 appfoforweb fluent
Wins8 appfoforweb fluent
 
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...
Develop High Performance Windows 8 Application with HTML5 and JavaScriptHigh ...
 
What Web Developers Need to Know to Develop Windows 8 Apps
What Web Developers Need to Know to Develop Windows 8 AppsWhat Web Developers Need to Know to Develop Windows 8 Apps
What Web Developers Need to Know to Develop Windows 8 Apps
 
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
 
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Metro apps with JavaScript, HTML5 & CSS3
 
Practical HTML5: Using It Today
Practical HTML5: Using It TodayPractical HTML5: Using It Today
Practical HTML5: Using It Today
 
Dive Into HTML5
Dive Into HTML5Dive Into HTML5
Dive Into HTML5
 
Practical HTML5: Using It Today
Practical HTML5: Using It TodayPractical HTML5: Using It Today
Practical HTML5: Using It Today
 

Kürzlich hochgeladen

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Kürzlich hochgeladen (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

HTML 5 Development for Windows Phone and Desktop

  • 1. HTML 5 Development for Windows Phone and Windows Desktop Ben Riga Doris Chen Ph.D. Technical Evangelist Developer Evangelist Windows Phone US West Region benriga@microsoft.com Doris.Chen@microsoft.com @benriga @doristchen http://blogs.msdn.com/benriga/ http://blogs.msdn.com/dorischen/ Bay Area Mobile Meetup Oct 6, 2011
  • 2. Agenda  Windows Phone – A Quick Look  Microsoft and HTML 5  Internet Explorer on the desktop, Windows Phone  A preview of PhoneGap on Windows Phone
  • 3. A quick look at Windows Phone Windows Phone Microsoft confidential.
  • 4. People vs. Icons
  • 5. Windows Phone puts people at the center making it easier to connect and share with friends, family and colleagues, so you never miss a moment. Modern communication A smarter way Internet built in. to app. beyond the browser.  People Hub with Facebook,  Pin apps to the Start screen for  A fast, beautiful web experience LinkedIn and Twitter, built in. live updates at a glance. with Internet Explorer 9 and hardware acceleration.  Group friends, pin them to Start  Apps connected to your searches for live updates and text, email make them easier to discover  Local Scout provides suggestions and IM them all at once. and use. and prioritized local search results on restaurants, shopping  Facebook Chat, Messenger, and things to do. check-ins, and photo tagging built in. 5
  • 6. Agenda  Windows Phone – A Quick Look  Microsoft and HTML 5  Internet Explorer on the desktop, Windows Phone  A preview of PhoneGap on Windows Phone
  • 7. A quick look at Windows Phone Windows Phone Microsoft confidential.
  • 8. People vs. Icons
  • 9. Windows Phone puts people at the center making it easier to connect and share with friends, family and colleagues, so you never miss a moment. Modern communication A smarter way Internet built in. to app. beyond the browser.  People Hub with Facebook,  Pin apps to the Start screen for  A fast, beautiful web experience LinkedIn and Twitter, built in. live updates at a glance. with Internet Explorer 9 and hardware acceleration.  Group friends, pin them to Start  Apps connected to your searches for live updates and text, email make them easier to discover  Local Scout provides suggestions and IM them all at once. and use. and prioritized local search results on restaurants, shopping  Facebook Chat, Messenger, and things to do. check-ins, and photo tagging built in. 9
  • 10. Microsoft and HTML 5 Windows Phone Microsoft confidential.
  • 11. What Developers Told Us  Interoperability and Same Markup  HTML5 Canvas, Audio, Video, XHTML, SVG, DOM L2 Core, DOM L2 & L3 Events, CSS3 Selectors, DOM Traversal, DOM Range, HTML5 Parsing, etc.  Performance  Holistic Focus on Performance, Faster JavaScript, GPU Powered Graphics  Websites more like native applications  Reducing the User Interface surface area, Unlocking the Hardware  Safe and Trusted Browsing  No ActiveX Controls, no Browser Helper Objects, no Plug-ins or Binary Behaviors
  • 12. Understanding Today’s Sites API Usage Over Top 7200 Sites 8000 7000 API Rank % 6000 indexOf 1 94% Number of Sites 5000 getElementById 13 80% 4000 addEventListener 27 65% 3000 getComputedStyle 62 26% 2000 1000 0 1 51 101 151 201 251 301 351 401 451 501 551 601 651 701 API (By Rank)
  • 13. 100+ Specifications Geolocation ECMA HTML CSS Web Apps SVG
  • 15. Internet Explorer on the desktop, Windows Phone Windows Phone Microsoft confidential.
  • 16. HTML5 in IE9 HTML5 CSS3 SVG Others • New Markup • 2D Transforms • Shapes • ECMA Script 5 (all Elements • Border Radius • Clipping, but Strict Mode) • Canvas • Box-Shadow Masking, and • Native JSON • Audio • Fonts (WOFF) Compositing support (IE8) • Video • Media Queries • Transforms • Performance API • Local Storage • Multiple • Extensibility • Geo-Location • Cross-Window Backgrounds • Gradients • Data-uri (IE8) Messaging • Namespaces • Interactivity • DOM L2, L3 • Text Selection • Opacity • Linking and Views • Selectors API L2 APIs • rgba(), hsl(), • Painting and • AJAX Navigation • Parsing SVG in Colors (IE8) hsla() HTML • Paths • DOMParser and • Selectors (IE8) XMLSerializer • Text • ICC v2 and Color Profile • ARIA Hardware Acceleration
  • 17. HTML5 in IE10 Platform Previews HTML5 CSS3 Others • Drag&Drop • Grid • Web Performance • File API • Flexbox APIs • Forms Validation • Gradient • ECMA Script 5 • Sandbox • Multi-Column Strict Mode • Web Workers • Floats • Advanced Hit Testing APIs • async • Media Queries Listeners • Removal of Style Sheet Limits
  • 18. Partial Summary of IE9 Windows Phone Support HTML5 Canvas 2D Transforms Colors Module HTML5 Video Background/Borders Namespaces SVG Fonts Module Values & Units HTML5 Audio CSS Media Queries Selectors DOM Core Level 2/.3 Geolocation Semantic Elements Traversal & Range ECMAScript 5 XML Parse/Serial DOM Events Level 2/3 Selector APIs Level 2 DataURIs L2 HTML & Style ICC Color Profiles CSSOM View
  • 19. Key IE9 Mango Features
  • 20. Key IE9 Windows Phone Technologies for Mobile • Support for Viewport <meta> tag • Support for W3C Geolocation, including GPS • Full support for CSS Media Queries • DOM Local Storage and Session Storage • Data URIs
  • 21. Controlling the Viewport <META name="HandheldFriendly" content="true" /> <META name="MobileOptimized" content="320" /> <META name="Viewport" content="width=device-width" />
  • 22. Controlling the Viewport Viewport Property Description width Sets the width of the viewport. Can be either an integer value or "device-width". Defaults to 1024 on Windows Phone, 980 on iPhone height Sets the height of the viewport. Can be either an integer value or "device-height". initial-scale Sets the initial scale value of the viewport. Defaults to 1.0. maximum-scale Determines the maximum scale value of the viewport. Range is from 0.1 to 10.0 minimum-scale Determines the minimum scale value of the viewport. Range is from 0.1 to 10.0 user-scalable Boolean that determines whether the user can scale the viewport
  • 23. Using Media Queries  Provide a way of applying style sheets based upon certain characteristics of the media  Window size, screen size, aspect ratio, color depth, resolution, etc.  Are a W3C candidate recommendation as of July 2010  Specification can be found at  http://www.w3.org/TR/css3-mediaqueries/ <link rel="stylesheet" media="screen and (max-width:800)" href="example.css" /> Or… @media screen and (max-width:800) { /* style definitions that apply to screens less than 800px wide */ }
  • 24. Using Media Queries Media Query Description Feature width Indicates an output surface, such as a window, of exactly width units (px, etc.) height Indicates an output surface, such as a window of exactly height units device-width Indicates a device that has exactly the given width, in given units device-height Indicates a device that has exactly the given height, in given units orientation Used with “portrait” or “landscape” for devices that can do both.
  • 25. Using Media Queries <link rel=“stylesheet” media=“screen and (max-device-width:800px)” href=“styles.css”> @media screen and (max-device-width:800px) { /* style definitions that apply to screens less than 800px wide */ } <link rel=“stylesheet” media=“screen and (min-width:480px) and (max-width:800px)” href=“styles.css”> @media screen and (min-width:480px) and (max-width:800px){ /* style definitions that apply to screens less than 800px wide */ } http://mediaqueri.es/popular/
  • 26. Geolocation  Geolocation allows a phone to figure out where it is  IP Address location or Wireless network location  Triangulation of cellular towers  GPS device that uses satellite signals  Can get location as a "one-shot" or continuously  Location is always opt-in  “User Agents must not send location information to Web sites without the express permission of the user.”  W3C Geolocation API  http://www.w3.org/TR/geolocation-API/
  • 27. Geolocation API: getCurrentPosition(successFn, errFn, options) watchPosition(successFn, errFn, options) clearWatch(watchID) successFn( positionObject ) errFn( positionErrorObject )
  • 28. Client-side LocalStorage / SessionStorage  Provides easier way of storing data on client without cookies
  • 29. DOM Storage API Available from the window object: window.localStorage window.sessionStorage getItem(key) setItem(key, value) removeItem(key) clear() key(index) length
  • 30. Things to remember about DOM Storage  Data is stored as strings – if you store other types, you must convert them yourself  Example:  setItem("mysite.product.price", 59.99);  var price = parseFloat("mysite.product.price");  If you try to store more than 5MB, an exception of type QUOTA_EXCEEDED_ERR is thrown  There is currently no way to request an increase in the available storage space in any of the browsers
  • 31. The data:// URI  Defines a way for embedding content such as images directly inline into markup or CSS content  Used to reduce the number of HTTP requests  IE9 allows data URIs up to 4GB in size  General Format: data:[mime-type][;base64],<image data as text>
  • 32. Data URI Usage  Use data URIs in place of normal URLs: HTML Replaces: <img src=“http://imagename.png” /> With:<img src=“data:image/png;base64,00af037491806ed...” /> CSS Replaces: .rule { background-image:url(‘http://imagename.png’) } With:.rule { background-image: url(‘data:image/png;base64,00af037491806ed...’) }
  • 33. Where to from here? Windows Phone Microsoft confidential.
  • 34. Looking forward Windows 8 Preview Guide Developer Preview Builds Dev Tools Conf Sessions http://dev.windows.com
  • 35. PhoneGap on Windows Phone (a preview) Windows Phone Microsoft confidential.
  • 36. PhoneGap  Open Source project for building mobile apps using web technologies  HTML, Javascript, CSS  http://PhoneGap.com  Across multiple platforms  iOS, Android, etc and soon Windows Phone  Maintained by Nitobi (recently acquired by Adobe)  Access to native APIs  Accelerometer, Camera, Compass, Connection, Contacts, Device, Events, File, Geolocation, Media, Notification, Storage
  • 37. PhoneGap on Windows Phone  Currently includes:  Accelerometer, Camera, Compass, Contacts, Events (partial, still underway), GeoLocation, MediaCapture, Connection, Notification  Requires installation  Windows Phone SDK 7.1 (which includes VS 2010)  Getting Started Info here:  http://bit.ly/PhoneGapMangoIntro  Code Here  https://github.com/phonegap/phonegap-wp7
  • 38. PhoneGap on Windows Phone (a demo) Windows Phone Microsoft confidential.
  • 39. Next Steps Internet Explorer Windows Phone  Internet Explorer Test Drive  Download SDK  http://bit.ly/ietestdrive/  Includes Dev Tools and  http://BeautyOfTheWeb.com Emulator  http://create.msdn.com Windows 8  Mobile Internet Explorer Test Drive  Preview Guide  http://bit.ly/IEmobile  Developer Preview Builds  Dev Tools  Conf Sessions  http://dev.windows.com
  • 40. HTML 5 Development for Windows Phone and Windows Desktop Ben Riga Doris Chen, Ph.D. Technical Evangelist Developer Evangelist Windows Phone US West Region benriga@microsoft.com Doris.Chen@microsoft.com @benriga @doristchen http://blogs.msdn.com/benriga/ http://blogs.msdn.com/dorischen/ Bay Area Mobile Meetup Oct 6, 2011
  • 41. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION. © 2011 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.