SlideShare a Scribd company logo
1 of 12
Download to read offline
Desarrollo de Aplicaciones Cross-
Platform para Dispositivos Moviles
Building Cross-Platform Mobile Applications
M.S.C. Raquel Vásquez Ramírez
M.S.C. Cristian A. Rodríguez Enríquez
Contenido	
  
•  Setup	
  jQuery	
  
•  Estructura	
  Básica	
  
•  Pagina	
  Interna	
  vs	
  Pagina	
  Externa	
  
•  Page	
  Transi<ons	
  
•  Crea<ng	
  dialogs	
  
•  jQuery	
  Mobile's	
  naviga<on	
  model	
  
•  Web	
  Service	
  Basics	
  (RESTFul)	
  
•  Ac<vidades	
  
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 02 of 12
Setup jQuery
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 03 of 12
<link rel=”stylesheet” href=”js/jQueryMobile/
jQuery.mobile.theme-1.1.0.min.css” />
<script src=”js/jQuery-1.7.2.min.js”></script>
<script src=”js/jQueryMobile/jQuery.mobile-1.1.0.min.js”></script>
•  Include jQuery Mobile CSS File
•  Include jQuery
•  Include jQuery Mobile JS File
Estructura Básica
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 04 of 12
<div	
  id=“pagina”	
  data-­‐role=“page”/>	
  
	
  	
  	
  	
  	
  <header	
  data-­‐role=“header”	
  data-­‐posi<on=“fixed”></header>	
  
	
  	
  	
  	
  	
  	
  <div	
  data-­‐role=“content“></div>	
  	
  
<footer	
  data-­‐role=“footer”	
  data-­‐posi<on=“fixed”></footer>	
  
</div>
Include data-role:
•  page
•  header
•  content
•  footer
Pagina Interna vs Pagina Externa
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 05 of 12
Note: #bar	
  =	
  page	
  id.	
  
<p>View internal page called <a href="#bar">bar</a></p>
<a href="multipage.html" rel="external">Multi-page link</a>
Internal Page
External Page
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 06 of 12
Page transitions
The jQuery Mobile framework includes a set of six CSS-based transition
effects:
•  slide
•  slideup
•  slidedown
•  pop
•  fade
•  flip
Highlight: By	
  default,	
  the	
  framework	
  applies	
  the	
  right	
  to	
  leW	
  slide	
  transi<on.	
  
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 07 of 12
Page transitions
To set a custom transition effect, add the data-transition attribute to the
link. Possible values include:
In addition, you can also force a "backwards" transition by specifying data-
direction="reverse" on your link.
<a href="index.html" data-transition="pop">I'll pop</a>
Note: specifying data-direction="reverse"	
  was	
  formerly	
  data-­‐back="true",	
  which	
  will	
  remain	
  
supported	
  un<l	
  1.0	
  
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 08 of 12
Creating Dialogs
Any page can be presented as a modal dialog by adding the data-
rel="dialog" attribute to the page anchor link.
When the "dialog" attribute is applied, the framework adds styles to add
rounded corners, margins around the page and a dark background to
make the "dialog" appear to be suspended above the page.
<a href="foo.html" data-rel="dialog">Open dialog</a>
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 09 of 12
jQuery Mobile's navigation model
HTTP Request
index
page2
page3
page4
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 10 of 12
jQuery Mobile's navigation model
HTTP Request
page1 page2
page4
Highlight: The	
  basic	
  workflow	
  with	
  page	
  loading	
  is	
  as	
  follows:	
  first,	
  a	
  page	
  is	
  requested	
  with	
  a	
  normal	
  HTTP	
  
request,	
  and	
  subsequent	
  "pages"	
  are	
  then	
  requested	
  and	
  injected	
  into	
  that	
  page's	
  DOM.	
  
page3
index
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 11 of 12
Web Service Basics (RESTFul)
•  HTTP Request
•  Unique Endpoint (1 Operation)
•  Plain Data (XML, JSON… format)
Case Study: Twitter API with OAuth
Ac<vidades	
  
•  Registrarse en Twitter
•  Crear una App en Twitter
•  Obtener Keys de Twitter
•  Analizar servicios REST de Twitter
Building Cross-Plaftform Mobile Applications – jQuery Mobile
Slide 12 of 12

More Related Content

What's hot

Introduction to Basic Concepts in Web
Introduction to Basic Concepts in WebIntroduction to Basic Concepts in Web
Introduction to Basic Concepts in Web
Jussi Pohjolainen
 
Harish Aspnet Dynamic Data
Harish Aspnet Dynamic DataHarish Aspnet Dynamic Data
Harish Aspnet Dynamic Data
rsnarayanan
 

What's hot (20)

MVVM & Validation with Kendo UI
MVVM & Validation with Kendo UIMVVM & Validation with Kendo UI
MVVM & Validation with Kendo UI
 
Front-End Development
Front-End DevelopmentFront-End Development
Front-End Development
 
Building web applications using kendo ui and the mvvm pattern
Building web applications using kendo ui and the mvvm patternBuilding web applications using kendo ui and the mvvm pattern
Building web applications using kendo ui and the mvvm pattern
 
Front end architecture
Front end architectureFront end architecture
Front end architecture
 
Easy HTML5 Data Visualization with Kendo UI DataViz
Easy HTML5 Data Visualization with Kendo UI DataVizEasy HTML5 Data Visualization with Kendo UI DataViz
Easy HTML5 Data Visualization with Kendo UI DataViz
 
Top Frontend Framework 2022
Top Frontend Framework 2022Top Frontend Framework 2022
Top Frontend Framework 2022
 
ASP.net MVC Introduction Wikilogia (nov 2014)
ASP.net MVC Introduction Wikilogia (nov 2014)ASP.net MVC Introduction Wikilogia (nov 2014)
ASP.net MVC Introduction Wikilogia (nov 2014)
 
What Is Web Content Management
What Is Web Content ManagementWhat Is Web Content Management
What Is Web Content Management
 
Refactoring to a Single Page Application
Refactoring to a Single Page ApplicationRefactoring to a Single Page Application
Refactoring to a Single Page Application
 
Comparative analysis of java script framework
Comparative analysis of java script frameworkComparative analysis of java script framework
Comparative analysis of java script framework
 
Resume
ResumeResume
Resume
 
Introduction to Basic Concepts in Web
Introduction to Basic Concepts in WebIntroduction to Basic Concepts in Web
Introduction to Basic Concepts in Web
 
jQuery
jQueryjQuery
jQuery
 
TulsaTechFest - Maximize SharePoint UX with free jQuery libraries
TulsaTechFest - Maximize SharePoint UX with free jQuery librariesTulsaTechFest - Maximize SharePoint UX with free jQuery libraries
TulsaTechFest - Maximize SharePoint UX with free jQuery libraries
 
Developing ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UIDeveloping ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UI
 
Single Page Application (SPA) using AngularJS
Single Page Application (SPA) using AngularJSSingle Page Application (SPA) using AngularJS
Single Page Application (SPA) using AngularJS
 
Harish Aspnet Dynamic Data
Harish Aspnet Dynamic DataHarish Aspnet Dynamic Data
Harish Aspnet Dynamic Data
 
Website development &amp; it's trends
Website development &amp; it's trendsWebsite development &amp; it's trends
Website development &amp; it's trends
 
Angular js
Angular jsAngular js
Angular js
 
Building SPA with Kendo UI
Building SPA with Kendo UIBuilding SPA with Kendo UI
Building SPA with Kendo UI
 

Similar to 02 Building cross-platform mobile applications with jQuery Mobile / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles

Web app and more
Web app and moreWeb app and more
Web app and more
faming su
 
Rp 6 session 2 naresh bhatia
Rp 6  session 2 naresh bhatiaRp 6  session 2 naresh bhatia
Rp 6 session 2 naresh bhatia
sapientindia
 

Similar to 02 Building cross-platform mobile applications with jQuery Mobile / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles (20)

Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5
 
How to Tango with Salesforce & jQueryMobile for HTML5 Goodness
How to Tango with Salesforce & jQueryMobile for HTML5 GoodnessHow to Tango with Salesforce & jQueryMobile for HTML5 Goodness
How to Tango with Salesforce & jQueryMobile for HTML5 Goodness
 
(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide
 
Jquery mobile
Jquery mobileJquery mobile
Jquery mobile
 
Mobile ASP.Net Web Forms - Making the impossible possible | FalafelCON 2014
Mobile ASP.Net Web Forms - Making the impossible possible | FalafelCON 2014Mobile ASP.Net Web Forms - Making the impossible possible | FalafelCON 2014
Mobile ASP.Net Web Forms - Making the impossible possible | FalafelCON 2014
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web Apps
 
10 Mobile Application Framework Must Know to Launch New App
10 Mobile Application Framework Must Know to Launch New App10 Mobile Application Framework Must Know to Launch New App
10 Mobile Application Framework Must Know to Launch New App
 
Mobilism 2011: How to put the mobile in the mobile web
Mobilism 2011: How to put the mobile in the mobile webMobilism 2011: How to put the mobile in the mobile web
Mobilism 2011: How to put the mobile in the mobile web
 
Angular JS Basics
Angular JS BasicsAngular JS Basics
Angular JS Basics
 
Web Apps and more
Web Apps and moreWeb Apps and more
Web Apps and more
 
Web app and more
Web app and moreWeb app and more
Web app and more
 
Adobe & HTML5
Adobe & HTML5Adobe & HTML5
Adobe & HTML5
 
ASP.NEt MVC and Angular What a couple
ASP.NEt MVC and Angular What a coupleASP.NEt MVC and Angular What a couple
ASP.NEt MVC and Angular What a couple
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
Tasvir_UI Developer
Tasvir_UI DeveloperTasvir_UI Developer
Tasvir_UI Developer
 
Html5 data viz
Html5 data vizHtml5 data viz
Html5 data viz
 
My CV
My CVMy CV
My CV
 
Rp 6 session 2 naresh bhatia
Rp 6  session 2 naresh bhatiaRp 6  session 2 naresh bhatia
Rp 6 session 2 naresh bhatia
 
Siva_DotNet
Siva_DotNetSiva_DotNet
Siva_DotNet
 
Workshop supermodel munich
Workshop supermodel munichWorkshop supermodel munich
Workshop supermodel munich
 

More from Cristian Rodríguez Enríquez

More from Cristian Rodríguez Enríquez (10)

05 building cross platform mobile applications
05 building cross platform mobile applications05 building cross platform mobile applications
05 building cross platform mobile applications
 
LiDIA: An integration architecture to query Linked Open Data from multiple da...
LiDIA: An integration architecture to query Linked Open Data from multiple da...LiDIA: An integration architecture to query Linked Open Data from multiple da...
LiDIA: An integration architecture to query Linked Open Data from multiple da...
 
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
 
03 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
03 Building cross platform mobile applications with PhoneGap / Desarrollo de ...03 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
03 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
 
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
 
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
01 Building cross-platform mobile applications with jQuery Mobile
01 Building cross-platform mobile applications with jQuery Mobile01 Building cross-platform mobile applications with jQuery Mobile
01 Building cross-platform mobile applications with jQuery Mobile
 
Propuesta de integración para el consumo de múltiples datasets de linked data
Propuesta de integración para el consumo de múltiples datasets de linked dataPropuesta de integración para el consumo de múltiples datasets de linked data
Propuesta de integración para el consumo de múltiples datasets de linked data
 

Recently uploaded

Recently uploaded (20)

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
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
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...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
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
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
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)
 
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
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
"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 ...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 

02 Building cross-platform mobile applications with jQuery Mobile / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles

  • 1. Desarrollo de Aplicaciones Cross- Platform para Dispositivos Moviles Building Cross-Platform Mobile Applications M.S.C. Raquel Vásquez Ramírez M.S.C. Cristian A. Rodríguez Enríquez
  • 2. Contenido   •  Setup  jQuery   •  Estructura  Básica   •  Pagina  Interna  vs  Pagina  Externa   •  Page  Transi<ons   •  Crea<ng  dialogs   •  jQuery  Mobile's  naviga<on  model   •  Web  Service  Basics  (RESTFul)   •  Ac<vidades   Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 02 of 12
  • 3. Setup jQuery Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 03 of 12 <link rel=”stylesheet” href=”js/jQueryMobile/ jQuery.mobile.theme-1.1.0.min.css” /> <script src=”js/jQuery-1.7.2.min.js”></script> <script src=”js/jQueryMobile/jQuery.mobile-1.1.0.min.js”></script> •  Include jQuery Mobile CSS File •  Include jQuery •  Include jQuery Mobile JS File
  • 4. Estructura Básica Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 04 of 12 <div  id=“pagina”  data-­‐role=“page”/>            <header  data-­‐role=“header”  data-­‐posi<on=“fixed”></header>              <div  data-­‐role=“content“></div>     <footer  data-­‐role=“footer”  data-­‐posi<on=“fixed”></footer>   </div> Include data-role: •  page •  header •  content •  footer
  • 5. Pagina Interna vs Pagina Externa Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 05 of 12 Note: #bar  =  page  id.   <p>View internal page called <a href="#bar">bar</a></p> <a href="multipage.html" rel="external">Multi-page link</a> Internal Page External Page
  • 6. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 06 of 12 Page transitions The jQuery Mobile framework includes a set of six CSS-based transition effects: •  slide •  slideup •  slidedown •  pop •  fade •  flip Highlight: By  default,  the  framework  applies  the  right  to  leW  slide  transi<on.  
  • 7. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 07 of 12 Page transitions To set a custom transition effect, add the data-transition attribute to the link. Possible values include: In addition, you can also force a "backwards" transition by specifying data- direction="reverse" on your link. <a href="index.html" data-transition="pop">I'll pop</a> Note: specifying data-direction="reverse"  was  formerly  data-­‐back="true",  which  will  remain   supported  un<l  1.0  
  • 8. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 08 of 12 Creating Dialogs Any page can be presented as a modal dialog by adding the data- rel="dialog" attribute to the page anchor link. When the "dialog" attribute is applied, the framework adds styles to add rounded corners, margins around the page and a dark background to make the "dialog" appear to be suspended above the page. <a href="foo.html" data-rel="dialog">Open dialog</a>
  • 9. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 09 of 12 jQuery Mobile's navigation model HTTP Request index page2 page3 page4
  • 10. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 10 of 12 jQuery Mobile's navigation model HTTP Request page1 page2 page4 Highlight: The  basic  workflow  with  page  loading  is  as  follows:  first,  a  page  is  requested  with  a  normal  HTTP   request,  and  subsequent  "pages"  are  then  requested  and  injected  into  that  page's  DOM.   page3 index
  • 11. Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 11 of 12 Web Service Basics (RESTFul) •  HTTP Request •  Unique Endpoint (1 Operation) •  Plain Data (XML, JSON… format) Case Study: Twitter API with OAuth
  • 12. Ac<vidades   •  Registrarse en Twitter •  Crear una App en Twitter •  Obtener Keys de Twitter •  Analizar servicios REST de Twitter Building Cross-Plaftform Mobile Applications – jQuery Mobile Slide 12 of 12