SlideShare una empresa de Scribd logo
1 de 79
Descargar para leer sin conexión
Web Apps and more
    mockee@douban




       http://bit.ly/IAhFE5
HTML5
 Once again...
Standard ?!




 http://www.w3.org/2011/02/htmlwg-pr.html
http://blog.whatwg.org/html-is-the-new-html5
       http://burningbird.net/node/156
"New open standards created in
the mobile era, such as HTML5,
will win on mobile devices. "

                                                   Steve Jobs
                                                   April, 2010




      http://www.apple.com/hotnews/thoughts-on-flash/
"HTML5 is now universally supported
on major mobile devices.
 
This makes HTML5 the best solution for
creating and deploying content in the
browser across mobile platforms."

                                                Danny Winokur
                                                November 9, 2011



     http://blogs.adobe.com/conversations/2011/11/flash-focus.html
http://gs.statcounter.com/press/mobile-internet-usage-is-doubling-year-on-year
Keywords
 Identifying Web Apps
Self Contained
      
Immersive
                   Work Offline
      
                                      Device Aware
    Functional
                                         New Navigable
Interactive
                         Ajaxcellent
  http://www.html5rocks.com/webappfieldguide/know-your-apps/app-checklist/
Concepts
  damned...
Desktop
                    Hybrid

 Native



Mobile       App    Web
Worry about
  Browsers & Devices
Top 9 Mobile Browsers in China
Top 12 Browser Versions in China
RangeComic
Top 10 Browsers in Douban




         Google Analytics
Top 10 Mobile Devices in Douban




            Google Analytics
Real World
   Douban Read




   http://read.douban.com
Submission System


Author             Editor


         WYSIWYG
dimensions
                 align




             upload
                         legend
<div class="figure">
    <img src="figure.png" alt="" />
    <div class="legend">
        <p>figure caption</p>
    </div>
</div>
                                Semantics
                                Elements
<figure>
    <img src="figure.png" alt="" />
    <figcaption>
        <p>figure caption</p>
    </figcaption>
</figure>
<mark>




  Semantically highlight parts of text
Web Reader
Content
Adaptation
 main techniques
Responsive Web Design
Mobile First
Progressive Enhancement
Server-side Adaptation
Responsive Web Design
                  by ETHAN MARCOTTE




  http://www.alistapart.com/articles/responsive-web-design/
Layout

                      Responsive
                      Media Queries
                      Grids

http://www.lukew.com/ff/entry.asp?1514
Bootstrap
http://markdotto.com/bs2/docs/


Frameless
http://framelessgrid.com/


Golden Grid System
http://goldengridsystem.com/


Less Framework 4
http://markdotto.com/bs2/docs/


1140 Grid
http://cssgrid.net/
Media Queries
Syntax
media_query_list
 : S* [media_query [ ',' S* media_query ]* ]?
 ;
media_query
 : [ONLY | NOT]? S* media_type S* [ AND S* expression ]
*
     | expression [ AND S* expression ]*
 ;
expression
 : '(' S* media_feature S* [ ':' S* expr ]? ')' S*
 ;



                 http://www.w3.org/TR/css3-mediaqueries
@media only screen
and (max-device-width: 1024px)
and (orientation: portrait),

(-webkit-min-device-pixel-ratio: 2)
and (max-device-width: 640px)

{ ... }
window.matchMedia
// get MediaQueryList
var mql = window.matchMedia(
    'screen and (orientation: portrait)');

mql.addListener(function(mql){
    if (mql.matches) {
      console.log('portrait');
    } else {
      console.log('landscape');
    }
});
matchMedia() polyfill

                                                                make sure it's hidden

document.createElement('div');
create a <style> node with a media attribute
set a CSS rule applied to a <div>
check to see if the style has been applied
return { matches: bool, media: ma }



  http://www.nczonline.net/blog/2012/01/03/css-media-queries-in-javascript-part-1/
orientation: landscape
table of contents
Panel




         Progress




  New Navigable
Original   Retina ?
 Large
Medium
 Small




                 Media Queries
Mobile First


   Mobile First

    Desktop



    Bryan Rieger
Format

Fixed-Layout           Reflowable

 Adobe PDF           Kindle Cloud Reader
  PostScript            Google Books
iBook Author              Plain Text
   (landscape)
Reflowing & Paging
             text block

             page break

             image block


           type page
Zoom or Crop

          Blank or Float
Web Workers
Inline Workers                             Use Cases
 WebKitBlobBuilder                             Prefetching Data
 MozBlobBuilder                                Processing large
                                               arrays, humungous
                                               JSON responses
Handling Errors                                Updating many rows
 "message", "error"                            of a local web
                                               database


       http://www.html5rocks.com/en/tutorials/workers/basics/
paging...

                               render




paging in background threads


                               render
Prerender
<link rel="prerender"
  href="http://read.douban.com/reader" />



    Book Store                              Reader


      Reader

                     http://prerender-test.appspot.com/
       https://developers.google.com/chrome/whitepapers/prerender
Page Visibility API
visibilityState   (webkit / moz)


     visible      hidden           prerender



document.addEventListener(
  'visibilitychange', function(e) {
    // document.visibilityState;
}, false);
Store                    Reader




if (document.visibilityState === 'hidden'
  || document.visibilityState === 'prerender'
  || document.hidden === 'ture') {
  stopSyncReadingProgress();
}



         http://www.w3.org/TR/2011/WD-page-visibility-20110602/
SVG
Configure Web Server MIME types
   ".svg" => "image/svg+xml"


Creating & Converting & Optimizing

       Aviary Raven      SVG-edit

      Vector Magic         Scour
SVG in CSS backgrounds

// fallback for IE 6/7/8
background: url(icons.png);

// for modern browsers
background: rgba(0,0,0,0) url(icons.svg);


           IE 6/7/8 don't support rgba color values
           will automatically ignore this rule


              http://caniuse.com/#feat=svg-css
Touch Events
touchstart    init
                             touches Array (1 or 11)
touchmove      update
                           touchInfo
touchend     use                pageX, pageY

touchcancel        clear           time

                                      thresholds



                                  Gestures
Gesture
Tap
single, double; hold


Swipe
up, right, down, left


Pinch
in, out; rotate
Scrolling
Native
  -webkit-overflow-scrolling: touch;

iScroll 4
  Pinch / Zoom, Pull up/down to refresh,
  Customizable scrollbars


Scrollability             by Joe Hewitt
   http://joehewitt.com/2011/10/05/fast-animation-with-ios-webkit
Fullscreen
                                               webkitRequestFullScreen
requestFullscreen
                                                     mozRequestFullScreen

                                                 webkitCancelFullScreen
exitFullscreen
                                                       mozCancelFullScreen

                                  webkitCurrentFullScreenElement
fullscreenElement
                                                      mozFullScreenElement

fullscreenEnabled                                     mozFullScreenEnabled

isFullscreen                                           webkitIsFullscreen

       http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html
webkitRequestFullScreen(
  Element.ALLOW_KEYBOARD_INPUT);


Events:
fullscreenchange, fullscreenerror


Compatibility:




                 F11
Issue 95344:
webkitRequestFullScreen results in a black background




document.documentElement.webkitRequestFullScreen();


        http://code.google.com/p/chromium/issues/detail?id=95344
Offline
manifest file
 
● MIME type: text/cache-manifest
● Same origin (domain & scheme)
 



Handling Events
 
checking, error, update, obsolete, cached,
downloading, updateready


            http://www.w3.org/TR/html5/offline.html
CACHE MANIFEST
# version 1.0.1
app.html#reader
/ark/js/*
/ark/logo.png favicon.ico
CACHE:
http://img3.douban.com/pics/cover.png
# online whitelist
NETWORK:
#*
/j/reader/
FALLBACK
:
fallback.html
CACHE MANIFEST
# version 1.0.1
                                  Can't include fragment identifiers.
app.html#reader
/ark/js/*        A full file name is required, no wildcards allowed.

/ark/logo.png favicon.ico
CACHE:                       Only one file per line.

http://img3.douban.com/pics/cover.png
# online whitelist
NETWORK:
#*
/j/reader/
FALLBACK:
fallback.html
* Enhance Application Cache for better performance:
 /ark/icon-reader.svg , ETag: ...
 app.html ETag: ... , Last-Modified: ...

 Reduces network bandwidth & latency


                with additional meta-data


                      updated manifest file

    Server                                            Client
                      re-fetch each resouce
                      newer ? re-fetch : 304


             only re-fetch definitely updated files
              
Compatibility




 window.applicationCache


                           i cached
           noupdate
                              swapCache()
checking
           downloading                 updateready
                           progress
Detecting Connection

if (navigator.onLine) {
  // send data to server
} else {
  // use Web Storage or Database
}

window.addEventListener(           reading progress
  'online', function(e) {
    // sync data with server
}, false);
                                   notes & comments
For iOS
Web clip icons
<link rel="apple-touch-icon"
  sizes="" href="" />

iPhone                  57x57
iPhone Retina           114x114
iPad                    72x72
iPad Retina             144x144



   http://developer.apple.com/library/ios/#documentation/userexperience/
            conceptual/mobilehig/IconsImages/IconsImages.html
Specifying startup image

<link rel="apple-touch-startup-image"
  href="img/ipad-landscape.png"
  media="screen
    and (min-device-width: 481px)
    and (max-device-width: 1024px)
    and (orientation:landscape)" />
...

iPad - landscape (768-20)x1024
iPad - portrait   768x(1024-20)
iPad Retina ...
iPhone ...
iPhone Retina ...
...
...
Viewport
Remove address (and button) bar
  <meta name="apple-mobile-web-app-capable"
    content="yes">

  window.scrollTo(0, 1);
  'load', 'orientationchange'          DEMO
  location.hash, setTimeout


Change status bar style
  // default, black, or black-translucent
  <meta name="apple-mobile-web-app-status-bar-style"
    content="black">
Framework
mini-framework

Structuralization               Backbone.js, micro-


Modules & Widgets                   Touch, Fx, Overlay


File & Module Loader                     RequireJS, Oz.js, Do.js


W3C Selectors API                  document.querySelector




       http://www.mindmeister.com/143758104/douban-read
Debugger
UA




     Webkit
     Developer Tools
friends of


weinre

http://phonegap.github.com/weinre/
Adobe Shadow




 http://labs.adobe.com/downloads/shadow.html
╮(╯_╰)╭
                                       Weinre
need to use machine's                  Wrapper
public IP address

must be connected
to the Internet

some updates in
Chrome are not
shown on devices

              http://forums.adobe.com/docs/DOC-1674
Thx:)
        mockee@gmail.com
blog: mockee.com twitter: @mockee
    douban.com/people/mockee/

Más contenido relacionado

La actualidad más candente

Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Webphilogb
 
Html5 features: location, history and offline apps
Html5 features: location, history and offline appsHtml5 features: location, history and offline apps
Html5 features: location, history and offline appsKonstantin Delchev
 
[cssdevconf] Adaptive Images in Responsive Web Design
[cssdevconf] Adaptive Images in Responsive Web Design[cssdevconf] Adaptive Images in Responsive Web Design
[cssdevconf] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web AppsOperation Mobile
 
[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Mobile Web & HTML5 Performance Optimization
Mobile Web & HTML5 Performance OptimizationMobile Web & HTML5 Performance Optimization
Mobile Web & HTML5 Performance OptimizationMaximiliano Firtman
 
JavaScript on HP webOS: Enyo and Node.js
JavaScript on HP webOS: Enyo and Node.jsJavaScript on HP webOS: Enyo and Node.js
JavaScript on HP webOS: Enyo and Node.jsBen Combee
 
HTML5 Who what where when why how
HTML5 Who what where when why howHTML5 Who what where when why how
HTML5 Who what where when why howbrucelawson
 
Mobile Web Speed Bumps
Mobile Web Speed BumpsMobile Web Speed Bumps
Mobile Web Speed BumpsNicholas Zakas
 
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkBuilding a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkSt. Petersburg College
 
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
 
[peachpit] Adaptive Images in Responsive Web Design
[peachpit] Adaptive Images in Responsive Web Design[peachpit] Adaptive Images in Responsive Web Design
[peachpit] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Building Progressive Web Apps for Android and iOS
Building Progressive Web Apps for Android and iOSBuilding Progressive Web Apps for Android and iOS
Building Progressive Web Apps for Android and iOSFITC
 
[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Todaydavyjones
 
The Days of Web Standards "IA" 20070715
The Days of Web Standards "IA" 20070715The Days of Web Standards "IA" 20070715
The Days of Web Standards "IA" 20070715Takashi Sakamoto
 

La actualidad más candente (19)

Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Web
 
Html5 features: location, history and offline apps
Html5 features: location, history and offline appsHtml5 features: location, history and offline apps
Html5 features: location, history and offline apps
 
[cssdevconf] Adaptive Images in Responsive Web Design
[cssdevconf] Adaptive Images in Responsive Web Design[cssdevconf] Adaptive Images in Responsive Web Design
[cssdevconf] Adaptive Images in Responsive Web Design
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web Apps
 
HTML5 WebWorks
HTML5 WebWorksHTML5 WebWorks
HTML5 WebWorks
 
Always on! ... or not?
Always on! ... or not?Always on! ... or not?
Always on! ... or not?
 
[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design
 
Mobile Web & HTML5 Performance Optimization
Mobile Web & HTML5 Performance OptimizationMobile Web & HTML5 Performance Optimization
Mobile Web & HTML5 Performance Optimization
 
JavaScript on HP webOS: Enyo and Node.js
JavaScript on HP webOS: Enyo and Node.jsJavaScript on HP webOS: Enyo and Node.js
JavaScript on HP webOS: Enyo and Node.js
 
HTML5 Who what where when why how
HTML5 Who what where when why howHTML5 Who what where when why how
HTML5 Who what where when why how
 
Mobile Web Speed Bumps
Mobile Web Speed BumpsMobile Web Speed Bumps
Mobile Web Speed Bumps
 
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkBuilding a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
 
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
 
URL Design
URL DesignURL Design
URL Design
 
[peachpit] Adaptive Images in Responsive Web Design
[peachpit] Adaptive Images in Responsive Web Design[peachpit] Adaptive Images in Responsive Web Design
[peachpit] Adaptive Images in Responsive Web Design
 
Building Progressive Web Apps for Android and iOS
Building Progressive Web Apps for Android and iOSBuilding Progressive Web Apps for Android and iOS
Building Progressive Web Apps for Android and iOS
 
[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
 
The Days of Web Standards "IA" 20070715
The Days of Web Standards "IA" 20070715The Days of Web Standards "IA" 20070715
The Days of Web Standards "IA" 20070715
 

Destacado

2010 2011年度中国互联网市场数据发布
2010 2011年度中国互联网市场数据发布2010 2011年度中国互联网市场数据发布
2010 2011年度中国互联网市场数据发布faming su
 
转化的灵感
转化的灵感转化的灵感
转化的灵感faming su
 
首届中国移动开发者调查分析报告
首届中国移动开发者调查分析报告首届中国移动开发者调查分析报告
首届中国移动开发者调查分析报告faming su
 
Telling Your Story to Universities
Telling Your Story to UniversitiesTelling Your Story to Universities
Telling Your Story to UniversitiesDiana ben-Aaron
 
友盟国内Android数据报告201101
友盟国内Android数据报告201101友盟国内Android数据报告201101
友盟国内Android数据报告201101faming su
 
3 general principles for teaching writing
3 general principles for teaching writing3 general principles for teaching writing
3 general principles for teaching writingRevathi Raja Kumaran
 
Eu sei tudo sobre o pai natal
Eu sei tudo sobre o pai natalEu sei tudo sobre o pai natal
Eu sei tudo sobre o pai natalruimcosta
 
Dynamics gp insights to distribution - inventory
Dynamics gp insights to distribution - inventoryDynamics gp insights to distribution - inventory
Dynamics gp insights to distribution - inventorySteve Chapman
 
007 01 138 tugas 2 basis_data
007 01 138 tugas 2 basis_data007 01 138 tugas 2 basis_data
007 01 138 tugas 2 basis_dataArya Bgtcool
 
Dynamics gp insights to distribution - purchase orders
Dynamics gp insights to distribution - purchase ordersDynamics gp insights to distribution - purchase orders
Dynamics gp insights to distribution - purchase ordersSteve Chapman
 
Profit pulling blogs
Profit pulling blogsProfit pulling blogs
Profit pulling blogsecharles1
 
007 01 138 tugas1 basis data
007 01 138 tugas1 basis data007 01 138 tugas1 basis data
007 01 138 tugas1 basis dataArya Bgtcool
 
Dynamics gp insights to manufacturing
Dynamics gp insights to manufacturingDynamics gp insights to manufacturing
Dynamics gp insights to manufacturingSteve Chapman
 
00701138 tugas4 basisdata2
00701138 tugas4 basisdata200701138 tugas4 basisdata2
00701138 tugas4 basisdata2Arya Bgtcool
 

Destacado (20)

2010 2011年度中国互联网市场数据发布
2010 2011年度中国互联网市场数据发布2010 2011年度中国互联网市场数据发布
2010 2011年度中国互联网市场数据发布
 
转化的灵感
转化的灵感转化的灵感
转化的灵感
 
Juguetes2 para swf
Juguetes2 para swfJuguetes2 para swf
Juguetes2 para swf
 
3
33
3
 
Global Forwarding Presentation
Global Forwarding PresentationGlobal Forwarding Presentation
Global Forwarding Presentation
 
首届中国移动开发者调查分析报告
首届中国移动开发者调查分析报告首届中国移动开发者调查分析报告
首届中国移动开发者调查分析报告
 
Telling Your Story to Universities
Telling Your Story to UniversitiesTelling Your Story to Universities
Telling Your Story to Universities
 
友盟国内Android数据报告201101
友盟国内Android数据报告201101友盟国内Android数据报告201101
友盟国内Android数据报告201101
 
Zhuhai Investment Overview 2017
Zhuhai Investment Overview 2017Zhuhai Investment Overview 2017
Zhuhai Investment Overview 2017
 
3 general principles for teaching writing
3 general principles for teaching writing3 general principles for teaching writing
3 general principles for teaching writing
 
Eu sei tudo sobre o pai natal
Eu sei tudo sobre o pai natalEu sei tudo sobre o pai natal
Eu sei tudo sobre o pai natal
 
Dynamics gp insights to distribution - inventory
Dynamics gp insights to distribution - inventoryDynamics gp insights to distribution - inventory
Dynamics gp insights to distribution - inventory
 
007 01 138 tugas 2 basis_data
007 01 138 tugas 2 basis_data007 01 138 tugas 2 basis_data
007 01 138 tugas 2 basis_data
 
Cover_CV_UrbaniNC_EN
Cover_CV_UrbaniNC_ENCover_CV_UrbaniNC_EN
Cover_CV_UrbaniNC_EN
 
Dynamics gp insights to distribution - purchase orders
Dynamics gp insights to distribution - purchase ordersDynamics gp insights to distribution - purchase orders
Dynamics gp insights to distribution - purchase orders
 
Imk
ImkImk
Imk
 
Profit pulling blogs
Profit pulling blogsProfit pulling blogs
Profit pulling blogs
 
007 01 138 tugas1 basis data
007 01 138 tugas1 basis data007 01 138 tugas1 basis data
007 01 138 tugas1 basis data
 
Dynamics gp insights to manufacturing
Dynamics gp insights to manufacturingDynamics gp insights to manufacturing
Dynamics gp insights to manufacturing
 
00701138 tugas4 basisdata2
00701138 tugas4 basisdata200701138 tugas4 basisdata2
00701138 tugas4 basisdata2
 

Similar a Web app and more

openMIC barcamp 11.02.2010
openMIC barcamp 11.02.2010openMIC barcamp 11.02.2010
openMIC barcamp 11.02.2010Patrick Lauke
 
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010Patrick Lauke
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX DesignersAshlimarie
 
HTML5 for Rich User Experience
HTML5 for Rich User ExperienceHTML5 for Rich User Experience
HTML5 for Rich User ExperienceMahbubur Rahman
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make itJonathan Snook
 
Bruce lawson-over-the-air
Bruce lawson-over-the-airBruce lawson-over-the-air
Bruce lawson-over-the-airbrucelawson
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Webmikeleeme
 
Taking Web Applications Offline
Taking Web Applications OfflineTaking Web Applications Offline
Taking Web Applications OfflineMatt Casto
 
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...Esri Nederland
 
HTML5 and the dawn of rich mobile web applications pt 1
HTML5 and the dawn of rich mobile web applications pt 1HTML5 and the dawn of rich mobile web applications pt 1
HTML5 and the dawn of rich mobile web applications pt 1James Pearce
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebGeorge Kanellopoulos
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersSascha Corti
 
Bd conf sencha touch workshop
Bd conf sencha touch workshopBd conf sencha touch workshop
Bd conf sencha touch workshopJames Pearce
 
Top Ten Tips for HTML5/Mobile Web Development
Top Ten Tips for HTML5/Mobile Web DevelopmentTop Ten Tips for HTML5/Mobile Web Development
Top Ten Tips for HTML5/Mobile Web DevelopmentSimon Guest
 

Similar a Web app and more (20)

openMIC barcamp 11.02.2010
openMIC barcamp 11.02.2010openMIC barcamp 11.02.2010
openMIC barcamp 11.02.2010
 
Html5
Html5Html5
Html5
 
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
Html5
Html5Html5
Html5
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
HTML5 for Rich User Experience
HTML5 for Rich User ExperienceHTML5 for Rich User Experience
HTML5 for Rich User Experience
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make it
 
The Enterprise Dilemma: Native vs. Web
The Enterprise Dilemma: Native vs. WebThe Enterprise Dilemma: Native vs. Web
The Enterprise Dilemma: Native vs. Web
 
Bruce lawson-over-the-air
Bruce lawson-over-the-airBruce lawson-over-the-air
Bruce lawson-over-the-air
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Web
 
Taking Web Applications Offline
Taking Web Applications OfflineTaking Web Applications Offline
Taking Web Applications Offline
 
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...
Building mobile apps with the ArcGIS api for Javascript, Esri, Andy Gup and A...
 
HTML5 and the dawn of rich mobile web applications pt 1
HTML5 and the dawn of rich mobile web applications pt 1HTML5 and the dawn of rich mobile web applications pt 1
HTML5 and the dawn of rich mobile web applications pt 1
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWeb
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web Developers
 
Bd conf sencha touch workshop
Bd conf sencha touch workshopBd conf sencha touch workshop
Bd conf sencha touch workshop
 
Top Ten Tips for HTML5/Mobile Web Development
Top Ten Tips for HTML5/Mobile Web DevelopmentTop Ten Tips for HTML5/Mobile Web Development
Top Ten Tips for HTML5/Mobile Web Development
 

Último

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 

Último (20)

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
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)
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
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?
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 

Web app and more