SlideShare una empresa de Scribd logo
1 de 36
Descargar para leer sin conexión
Overview on
jQuery mobile
           by
Md.Ziaul Haq (jquerygeek)
    UIX Team, Odesk.
http://jquerymobile.com/

                           By   jquerygeek
Ø  What is jquery mobile


ü  Touch-Optimized Web Framework for Smartphones & Tablets

ü  Built based on jquery framework by jquery foundation

ü  HTML5 based UI markup

ü  Lightweight single js file and a single css file.




                                                       By   jquerygeek
Ø  Why jquery mobile. 


ü  There are few real reason to use jquery mobile.
                          Layout and Theming Engine


ü  Lets see those …




                                                       By   jquerygeek
1. Built based on most popular
jquery library. 

             Layout and Theming Engine




                                         By   jquerygeek
2. Based on HTML5 Markup


            Layout and Theming Engine




                                        By   jquerygeek
3. Touch Friendly inputs and
widgets

             Layout and Theming Engine




                                         By   jquerygeek
4. Ajaxified Friendly Navigation


             Layout and Theming Engine




                                         By   jquerygeek
5. Layout and Theming Engine 


             Layout and Theming Engine




                                         By   jquerygeek
6. Theme Roller for custom theme


                       Layout and Theming Engine




http://jquerymobile.com/themeroller/

                                                   By   jquerygeek
7. Widest Browser Coverage 


             Layout and Theming Engine




                                         By   jquerygeek
7. Widest Browser Coverage 

ü  iOs 3.2+, Android 2.1+/Honeycomb Windows Phone 7

ü  Blackberry 6.0/Playbook

ü  Palm WebOS 1.4+ 

ü  Mobile Opera & Mobile Firefox Amazon Kindle 3 & Fire

ü  Desktop Chrome, FF, IE 7+, Opera 




                                                   By   jquerygeek
8. Progressive Enhancement 


ü  C-Grade: Basic HTML

ü  B-Grade: Enhanced Style, No Ajax 

ü  A-Grade: Full Enhanced Style. Ajax and CSS Transitions 




http://jquerymobile.com/gbs/

                                                    By   jquerygeek
9. Widest Mobile Testing Lab 




                             By   jquerygeek
10. Popular Mobile Framework




http://www.google.com/trends/explore#q=jquery+mobile,sencha,dojo+mobile,jqmobi


                                                              By   jquerygeek
11. Lite Weight JS File




                           By   jquerygeek
12. Adobe CS-6 support jQuery
Mobile




                           By   jquerygeek
Ø  Lets Start Implementing




                               By   jquerygeek
Ø  Docs For Initial Start




  http://jquerymobile.com/demos/1.2.0/

                                         By   jquerygeek
Ø  Include Latest Files

<link rel="stylesheet" href="http://code.jquery.com/
mobile/1.2.0/jquery.mobile-1.2.0.min.css" />

<script src="http://code.jquery.com/
jquery-1.8.2.min.js"></script>

<script src="http://code.jquery.com/mobile/1.2.0/
jquery.mobile-1.2.0.min.js"></script>


http://jquerymobile.com/download/

                                         By   jquerygeek
Ø  Set the Viewport


<meta name="viewport" content="width=device-width,
initial-scale=1">




                                         By   jquerygeek
Ø  Basic Page Content Structure

<body>
       <div data-role="page">
              <div data-role="header"> <h1>My Title</h1> </div>
              <div data-role="content"> <p>Hello world</p> </div>
              <div data-role=”footer"> <p>My Footer</p> </div>
       </div>
</body>



    http://jquerymobile.com/demos/1.2.0/docs/pages/page-anatomy.html



                                                              By   jquerygeek
Ø  Page to Page Linking


<div data-role=”footer">
       <a href=“page2.html”>Page2</a>
       <a href=“page3.html”>Page3</a>
</div>




                                        By   jquerygeek
Ø  Loaded by AJAX and With URL

<body> <!– If no data-role=page, content will load here -->
       <div data-role="page">
              <!– Page2 and Page3 Content will load here -->
       </div>
</body>




                                                  By   jquerygeek
Ø  Link Multiple Page in Single
      Template
<div data-role=”footer">
       <a href=“#page2”>Page2</a>
       <a href=“#page3”>Page3</a>
</div>




                                    By   jquerygeek
Ø  Multi Page Template Structure

<div data-role="page” id=“page2”>
       <div data-role="header"> <h1>My Title</h1> </div>
       <div data-role="content"> <p>Hello world</p> </div>
       <div data-role=”footer"> <p>My Footer</p> </div>
</div>

<div data-role="page” id=“page3”>
       <div data-role="header"> <h1>My Title</h1> </div>
       <div data-role="content"> <p>Hello world</p> </div>
       <div data-role=”footer"> <p>My Footer</p> </div>
</div>




                                                  By   jquerygeek
Ø  Basic Page Theme

<div data-theme=“c”>
       <ul data-role=”listview">
              <li>My Title 1</li>
              <li>My Title 2</li>
              <li>My Title 2</li>
       </ul>
</div>




                                    By   jquerygeek
Ø  Theme Anatomy a Bit More


data-theme=[a-f]
data-[element]theme=[a-f]
<ul data-dividertheme=[a-f]>
<ul data-inset=true>


  http://jquerymobile.com/demos/1.2.0/docs/api/themes.html



                                                      By   jquerygeek
Ø  There are more items in Practical
    Implementation


May be in Another Session J


http://jquerymobile.com/demos/1.2.0/docs/


                                            By   jquerygeek
Ø  See Who Are Using Successfully




http://www.jqmgallery.com/
                             By   jquerygeek
Ø  3rd Party Plugins




 http://jquerymobile.com/resources/
                                      By   jquerygeek
Ø  Some Apps and Frameworks




http://jquerymobile.com/resources/
                                     By   jquerygeek
Ø  Resources and Books




http://jquerymobile.com/resources/
                                     By   jquerygeek
Ø  Articles and Tutorials




 http://jquerymobile.com/resources/
                                      By   jquerygeek
Ø  Community and Helps

 •  http://forum.jquery.com/jquery-mobile
 •  http://jquerymobile.com/blog
 •  http://www.linkedin.com/groups/jQuery-Mobile-
   Developers-4003480
 •  http://www.raymondcamden.com/
 •  http://andymatthews.net/category/jQuery-Mobile/
 •  http://coenraets.org/blog/category/jquery-mobile/




                                                        By   jquerygeek
Ø  That’s For Today From Me


      Thanks a Lot J

  Questions, Please…….


                            By   jquerygeek

Más contenido relacionado

La actualidad más candente

jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobilemowd8574
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web componentsJarrod Overson
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkBorisMoore
 
Accessibility - A feature you can build
Accessibility - A feature you can buildAccessibility - A feature you can build
Accessibility - A feature you can buildMonika Piotrowicz
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllMarc Grabanski
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web AppsOperation Mobile
 
jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014dmethvin
 
jQuery Mobile Introduction ( demo on EZoapp )
jQuery Mobile Introduction ( demo on EZoapp )jQuery Mobile Introduction ( demo on EZoapp )
jQuery Mobile Introduction ( demo on EZoapp )EZoApp
 
State of jQuery June 2013 - Portland
State of jQuery June 2013 - PortlandState of jQuery June 2013 - Portland
State of jQuery June 2013 - Portlanddmethvin
 
JsViews - Next Generation jQuery Templates
JsViews - Next Generation jQuery TemplatesJsViews - Next Generation jQuery Templates
JsViews - Next Generation jQuery TemplatesBorisMoore
 
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
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisPablo Garrido
 
Quick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileQuick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileJussi Pohjolainen
 
Thinking in Components
Thinking in ComponentsThinking in Components
Thinking in ComponentsFITC
 

La actualidad más candente (20)

What is jQuery?
What is jQuery?What is jQuery?
What is jQuery?
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
 
Adobe & HTML5
Adobe & HTML5Adobe & HTML5
Adobe & HTML5
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data Link
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
Jquery Cheatsheet
Jquery CheatsheetJquery Cheatsheet
Jquery Cheatsheet
 
Accessibility - A feature you can build
Accessibility - A feature you can buildAccessibility - A feature you can build
Accessibility - A feature you can build
 
jQuery Mobile UI
jQuery Mobile UIjQuery Mobile UI
jQuery Mobile UI
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web Apps
 
jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014
 
jQuery Mobile Introduction ( demo on EZoapp )
jQuery Mobile Introduction ( demo on EZoapp )jQuery Mobile Introduction ( demo on EZoapp )
jQuery Mobile Introduction ( demo on EZoapp )
 
State of jQuery June 2013 - Portland
State of jQuery June 2013 - PortlandState of jQuery June 2013 - Portland
State of jQuery June 2013 - Portland
 
JsViews - Next Generation jQuery Templates
JsViews - Next Generation jQuery TemplatesJsViews - Next Generation jQuery Templates
JsViews - Next Generation jQuery Templates
 
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
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Quick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileQuick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery Mobile
 
Thinking in Components
Thinking in ComponentsThinking in Components
Thinking in Components
 

Destacado

Responsive Design and jQuery Mobile
Responsive Design and jQuery MobileResponsive Design and jQuery Mobile
Responsive Design and jQuery MobileTroy Miles
 
jQuery Mobile: For Fun and Profit
jQuery Mobile: For Fun and ProfitjQuery Mobile: For Fun and Profit
jQuery Mobile: For Fun and ProfitDaniel Cousineau
 
Jquery plugin development
Jquery plugin developmentJquery plugin development
Jquery plugin developmentMd. Ziaul Haq
 
jQuery Report
jQuery ReportjQuery Report
jQuery ReportPaul Ward
 
Jquery Plugin
Jquery PluginJquery Plugin
Jquery PluginRavi Mone
 
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGapBuilding Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGapNick Landry
 

Destacado (7)

jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Responsive Design and jQuery Mobile
Responsive Design and jQuery MobileResponsive Design and jQuery Mobile
Responsive Design and jQuery Mobile
 
jQuery Mobile: For Fun and Profit
jQuery Mobile: For Fun and ProfitjQuery Mobile: For Fun and Profit
jQuery Mobile: For Fun and Profit
 
Jquery plugin development
Jquery plugin developmentJquery plugin development
Jquery plugin development
 
jQuery Report
jQuery ReportjQuery Report
jQuery Report
 
Jquery Plugin
Jquery PluginJquery Plugin
Jquery Plugin
 
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGapBuilding Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
 

Similar a Overview on jQuery mobile

Toutch Jquery Mobile
Toutch Jquery MobileToutch Jquery Mobile
Toutch Jquery MobileJinlong He
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobilePablo Garrido
 
Mobile Apps with PhoneGap and jQuery Mobile
Mobile Apps with PhoneGap and jQuery MobileMobile Apps with PhoneGap and jQuery Mobile
Mobile Apps with PhoneGap and jQuery MobileTerry Ryan
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesMark Roden
 
a-blog cms 勉強会 NAGOYA 20110718
a-blog cms 勉強会 NAGOYA 20110718a-blog cms 勉強会 NAGOYA 20110718
a-blog cms 勉強会 NAGOYA 20110718Ayumu Sato
 
High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)Steve Souders
 
JQuery mobile
JQuery mobileJQuery mobile
JQuery mobileGary Yeh
 
Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5Ron Reiter
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks TriviaCognizant
 
Jquery
Jquery Jquery
Jquery eginni
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)Doris Chen
 
Enough with the javas cript already! de Nicholas Zakas
Enough with the javas cript already! de Nicholas ZakasEnough with the javas cript already! de Nicholas Zakas
Enough with the javas cript already! de Nicholas ZakasKubide
 
Course CodeSchool - Shaping up with Angular.js
Course CodeSchool - Shaping up with Angular.jsCourse CodeSchool - Shaping up with Angular.js
Course CodeSchool - Shaping up with Angular.jsVinícius de Moraes
 
Now you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and DevelopmentNow you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and DevelopmentJonas Päckos
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and ModernizrJussi Pohjolainen
 

Similar a Overview on jQuery mobile (20)

Toutch Jquery Mobile
Toutch Jquery MobileToutch Jquery Mobile
Toutch Jquery Mobile
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery Mobile
 
Mobile Apps with PhoneGap and jQuery Mobile
Mobile Apps with PhoneGap and jQuery MobileMobile Apps with PhoneGap and jQuery Mobile
Mobile Apps with PhoneGap and jQuery Mobile
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPages
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
a-blog cms 勉強会 NAGOYA 20110718
a-blog cms 勉強会 NAGOYA 20110718a-blog cms 勉強会 NAGOYA 20110718
a-blog cms 勉強会 NAGOYA 20110718
 
High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)
 
Challenges going mobile
Challenges going mobileChallenges going mobile
Challenges going mobile
 
Taking your Web App for a walk
Taking your Web App for a walkTaking your Web App for a walk
Taking your Web App for a walk
 
JQuery mobile
JQuery mobileJQuery mobile
JQuery mobile
 
J query
J queryJ query
J query
 
Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5
 
Apex & jQuery Mobile
Apex & jQuery MobileApex & jQuery Mobile
Apex & jQuery Mobile
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
 
Jquery
Jquery Jquery
Jquery
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
 
Enough with the javas cript already! de Nicholas Zakas
Enough with the javas cript already! de Nicholas ZakasEnough with the javas cript already! de Nicholas Zakas
Enough with the javas cript already! de Nicholas Zakas
 
Course CodeSchool - Shaping up with Angular.js
Course CodeSchool - Shaping up with Angular.jsCourse CodeSchool - Shaping up with Angular.js
Course CodeSchool - Shaping up with Angular.js
 
Now you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and DevelopmentNow you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and Development
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and Modernizr
 

Último

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
 
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
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
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 WorkerThousandEyes
 
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
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
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
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 

Último (20)

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
 
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
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.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
 
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)
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 

Overview on jQuery mobile

  • 1. Overview on jQuery mobile by Md.Ziaul Haq (jquerygeek) UIX Team, Odesk.
  • 2. http://jquerymobile.com/ By jquerygeek
  • 3. Ø  What is jquery mobile ü  Touch-Optimized Web Framework for Smartphones & Tablets ü  Built based on jquery framework by jquery foundation ü  HTML5 based UI markup ü  Lightweight single js file and a single css file. By jquerygeek
  • 4. Ø  Why jquery mobile. ü  There are few real reason to use jquery mobile. Layout and Theming Engine ü  Lets see those … By jquerygeek
  • 5. 1. Built based on most popular jquery library. Layout and Theming Engine By jquerygeek
  • 6. 2. Based on HTML5 Markup Layout and Theming Engine By jquerygeek
  • 7. 3. Touch Friendly inputs and widgets Layout and Theming Engine By jquerygeek
  • 8. 4. Ajaxified Friendly Navigation Layout and Theming Engine By jquerygeek
  • 9. 5. Layout and Theming Engine Layout and Theming Engine By jquerygeek
  • 10. 6. Theme Roller for custom theme Layout and Theming Engine http://jquerymobile.com/themeroller/ By jquerygeek
  • 11. 7. Widest Browser Coverage Layout and Theming Engine By jquerygeek
  • 12. 7. Widest Browser Coverage ü  iOs 3.2+, Android 2.1+/Honeycomb Windows Phone 7 ü  Blackberry 6.0/Playbook ü  Palm WebOS 1.4+ ü  Mobile Opera & Mobile Firefox Amazon Kindle 3 & Fire ü  Desktop Chrome, FF, IE 7+, Opera By jquerygeek
  • 13. 8. Progressive Enhancement ü  C-Grade: Basic HTML ü  B-Grade: Enhanced Style, No Ajax ü  A-Grade: Full Enhanced Style. Ajax and CSS Transitions http://jquerymobile.com/gbs/ By jquerygeek
  • 14. 9. Widest Mobile Testing Lab By jquerygeek
  • 15. 10. Popular Mobile Framework http://www.google.com/trends/explore#q=jquery+mobile,sencha,dojo+mobile,jqmobi By jquerygeek
  • 16. 11. Lite Weight JS File By jquerygeek
  • 17. 12. Adobe CS-6 support jQuery Mobile By jquerygeek
  • 18. Ø  Lets Start Implementing By jquerygeek
  • 19. Ø  Docs For Initial Start http://jquerymobile.com/demos/1.2.0/ By jquerygeek
  • 20. Ø  Include Latest Files <link rel="stylesheet" href="http://code.jquery.com/ mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/ jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/ jquery.mobile-1.2.0.min.js"></script> http://jquerymobile.com/download/ By jquerygeek
  • 21. Ø  Set the Viewport <meta name="viewport" content="width=device-width, initial-scale=1"> By jquerygeek
  • 22. Ø  Basic Page Content Structure <body> <div data-role="page"> <div data-role="header"> <h1>My Title</h1> </div> <div data-role="content"> <p>Hello world</p> </div> <div data-role=”footer"> <p>My Footer</p> </div> </div> </body> http://jquerymobile.com/demos/1.2.0/docs/pages/page-anatomy.html By jquerygeek
  • 23. Ø  Page to Page Linking <div data-role=”footer"> <a href=“page2.html”>Page2</a> <a href=“page3.html”>Page3</a> </div> By jquerygeek
  • 24. Ø  Loaded by AJAX and With URL <body> <!– If no data-role=page, content will load here --> <div data-role="page"> <!– Page2 and Page3 Content will load here --> </div> </body> By jquerygeek
  • 25. Ø  Link Multiple Page in Single Template <div data-role=”footer"> <a href=“#page2”>Page2</a> <a href=“#page3”>Page3</a> </div> By jquerygeek
  • 26. Ø  Multi Page Template Structure <div data-role="page” id=“page2”> <div data-role="header"> <h1>My Title</h1> </div> <div data-role="content"> <p>Hello world</p> </div> <div data-role=”footer"> <p>My Footer</p> </div> </div> <div data-role="page” id=“page3”> <div data-role="header"> <h1>My Title</h1> </div> <div data-role="content"> <p>Hello world</p> </div> <div data-role=”footer"> <p>My Footer</p> </div> </div> By jquerygeek
  • 27. Ø  Basic Page Theme <div data-theme=“c”> <ul data-role=”listview"> <li>My Title 1</li> <li>My Title 2</li> <li>My Title 2</li> </ul> </div> By jquerygeek
  • 28. Ø  Theme Anatomy a Bit More data-theme=[a-f] data-[element]theme=[a-f] <ul data-dividertheme=[a-f]> <ul data-inset=true> http://jquerymobile.com/demos/1.2.0/docs/api/themes.html By jquerygeek
  • 29. Ø  There are more items in Practical Implementation May be in Another Session J http://jquerymobile.com/demos/1.2.0/docs/ By jquerygeek
  • 30. Ø  See Who Are Using Successfully http://www.jqmgallery.com/ By jquerygeek
  • 31. Ø  3rd Party Plugins http://jquerymobile.com/resources/ By jquerygeek
  • 32. Ø  Some Apps and Frameworks http://jquerymobile.com/resources/ By jquerygeek
  • 33. Ø  Resources and Books http://jquerymobile.com/resources/ By jquerygeek
  • 34. Ø  Articles and Tutorials http://jquerymobile.com/resources/ By jquerygeek
  • 35. Ø  Community and Helps •  http://forum.jquery.com/jquery-mobile •  http://jquerymobile.com/blog •  http://www.linkedin.com/groups/jQuery-Mobile- Developers-4003480 •  http://www.raymondcamden.com/ •  http://andymatthews.net/category/jQuery-Mobile/ •  http://coenraets.org/blog/category/jquery-mobile/ By jquerygeek
  • 36. Ø  That’s For Today From Me Thanks a Lot J Questions, Please……. By jquerygeek