SlideShare ist ein Scribd-Unternehmen logo
1 von 48
jqmdesigner.appspot.com
What is jQuery Mobile
jQuery + Mobile
jQuery Mobile
=
So simple, we all know it!
But, What is jQuery Mobile? Can we eat it?
Features
Powerful Ajax-powered
navigation system
HTML5 Markup-driven
configuration
Built on jQuery core
Responsive design
Progressive enhancement
Touch and mouse
event support
Lightweight size
Compatible with all major mobile,
tablet, e-reader & desktop platforms
Unified UI widgets
However, I heard that jQuery Mobile is fat
jQuery Mobile Version 1.4.3
Significantly improved performance than ever
feel jQuery Mobile
http://demos.jquerymobile.com/1.4.2/
Let’s Learn jQuery Mobile
<link rel="stylesheet" href="jquery.mobile.min.css" />
<script src="jquery.min.js"></script>
<script src="jquery.mobile.min.js"></script>
jQuery Mobile preloaded program
<head>
<title>jQuery Mobile</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile.min.css" />
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>header</h1>
</div>
<div class="ui-content">
<p>content</p>
</div>
<div data-role="footer">
<h4>footer</h4>
</div>
</div>
</body>
First step
<div id="page1" data-role="page">
<div role="main" class="ui-content"></div>
</div>
<div id="page2" data-role="page">
<div role="main" class="ui-content"></div>
</div>
<div id="page3" data-role="page">
<div role="main" class="ui-content"></div>
</div>
JQuery Mobile is usually a multiple page
However, only one of which is displayed,
page id must be separated
page
page Feel Page on EZoApp
http://goo.gl/EmXUY9
★ Use <href>, switch directly to the specified "Page Id"
★ Using "data-transition" set the transition effect
★ Set data-rel = "back" to return with the same effect
page
transition
<a href="#pageID" data-transition="效果"></a>
★ You can also use javascript to do the switch
★ $.mobile.changePage('#PageID');
★ $.mobile.changePage('#PageB' , {'transition':'Effect'} );
● default
● fade
● flip
● flow
● pop
● slide
● slidefade
● slideup
● slidedown
● turn
● none
<a href="#pageID" data-transition="effect"></a>
example
http://goo.gl/xwIR0F
page
transition
Button <a href="#" class="ui-btn">Anchor</a>
<button class="ui-btn">Button</button>
Use the "class" generate button style
<a href="#" class="ui-btn ui-btn-inline">Anchor</a>
<button class="ui-btn ui-btn-inline">Button</button>
Button
ICON <button class="ui-btn ui-btn-icon-left ui-icon-action">action</button>
<button class="ui-btn ui-btn-icon-left ui-icon-alert">alert</button>
<button class="ui-btn ui-btn-icon-up ui-icon-arrow-d">arrow-d</button>
<button class="ui-btn ui-btn-icon-right ui-icon-arrow-d-l">arrow-d-l</button>
<button class="ui-btn ui-btn-icon-bottom ui-icon-arrow-d-r">arrow-d-r</button>
<button class="ui-btn ui-btn-icon-left ui-icon-arrow-l">arrow-l</button>
example
http://goo.gl/TQxnvm
Use the "class" generate button style
Grid <div class="ui-grid-b">
<div class="ui-block-a">Block A</div>
<div class="ui-block-b">Block B</div>
<div class="ui-block-c">Block C</div>
</div>
Use "class" generates Grid, you can put the Grid in Grid
ui-grid-a : 2 columnsui-grid-b3 columns
ui-grid-c4 columnsui-grid-d5 columns
example:
http://goo.gl/AizA2f
Input
<div class="ui-field-contain">
<label for="#text_id">Title</label>
<input type="text" name="" id="#text_id">
</div>
<div class="ui-field-contain">
<label for="#textarea_id">Title</label>
<textarea name="" id="#textarea_id"></textarea>
</div>
<div class="ui-field-contain">
<label for="#search_id">Title</label>
<input type="search" name="" id="#search_id">
</div>
example:
http://goo.gl/XOXJPH
theme Use "class" have different themes
按鈕
<a href="#" class="ui-btn ui-btn-a">Theme A</a>
<a href="#" class="ui-btn ui-btn-b">Theme B</a>
navbar
<div data-role="navbar">
<ul>
<li><a data-theme="a">Theme A</a></li>
<li><a data-theme="b">Theme B</a></li>
</ul>
</div>
example:
http://goo.gl/E8QcW9
Some examples of the above,
we see that "class" is very important
You must think
Of course !
The second is also very important: data attribute
2
What is data attribute
The data-* attributes is used to store custom data private to
the page or application.
The data-* attributes gives us the ability to embed custom
data attributes on all HTML elements.
jQuery Mobile data attribute
http://api.jquerymobile.com/data-attribute/
Header
&
Footer
<div data-role="header" data-position="fixed">
<h1>header</h1>
</div>
<div data-role="footer" data-position="fixed">
<h4>footer</h4>
</div>
example:
http://goo.gl/YpuDEY
Navbar <div data-role="navbar">
<ul>
<li><a href="#">One</a></li>
<li><a href="#">Two</a></li>
</ul>
</div>
example:
http://goo.gl/3nwwe1
Radio
button
<form>
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>Horizontal:</legend>
<input type="radio" name="radio-choice-h-2" id="radio-choice-h-2a"
value="on" checked="checked">
<label for="radio-choice-h-2a">One</label>
<input type="radio" name="radio-choice-h-2" id="radio-choice-h-2b"
value="off">
<label for="radio-choice-h-2b">Two</label>
<input type="radio" name="radio-choice-h-2" id="radio-choice-h-2c"
value="other">
<label for="radio-choice-h-2c">Three</label>
</fieldset>
</form>
example:
http://goo.gl/Vh67Vf
Check
box
<form>
<fieldset data-role="controlgroup">
<legend>Vertical:</legend>
<input type="checkbox" name="checkbox-v-2a" id="checkbox-v-2a">
<label for="checkbox-v-2a">One</label>
<input type="checkbox" name="checkbox-v-2b" id="checkbox-v-2b">
<label for="checkbox-v-2b">Two</label>
<input type="checkbox" name="checkbox-v-2c" id="checkbox-v-2c">
<label for="checkbox-v-2c">Three</label>
</fieldset>
</form>
example:
http://goo.gl/x7vfGr
Flip
switch
<form>
<label for="flip-2">Flip toggle switch:</label>
<select name="flip-2" id="flip-2" data-
role="flipswitch" data-theme="b">
<option value="off">Off</option>
<option value="on">On</option>
</select>
</form>
example:
http://goo.gl/83Mn0z
Listview <ul data-role="listview" data-inset="true"
data-divider-theme="a">
<li data-role="list-divider">Mail</li>
<li><a href="#">Inbox</a></li>
<li><a href="#">Outbox</a></li>
<li data-role="list-
divider">Contacts</li>
<li><a href="#">Friends</a></li>
<li><a href="#">Work</a></li>
</ul>
Use "data-role" to easily create "listview (filter)"
example:
http://goo.gl/XjmWug
Popup <a href="#popupID" data-rel="popup" class="ui-btn" data-
transition="pop">Popup</a>
<div data-role="popup" id="popupID">
<p>popup 慧ćźč</p>
</div>
example:
http://goo.gl/7rcO1C
Table
<table data-role="table" id="table-column-toggle" data-
mode="columntoggle" class="ui-responsive table-stroke">
<thead>
慧ćźč省畄
</thead>
<tbody>
慧ćźč省畄
</tbody>
</table>
http://goo.gl/pMJlkP
(columntoggle / Reflow)
Slide
Panel
<div id="left-menu" data-role="panel" data-position="left">
left menu
</div>
<div id="right-menu" data-role="panel" data-
position="right">
right menu
</div>
It is like App slider menu
example:
http://goo.gl/jM6sU3
How to make "jQuery Mobile" work?
How ?
Events
Page
(function (){
$(document).on( "pageinit" , "#pageID" , function(){
// Page first loads will be executed
});
})()
(function (){
$(document).on( "pageshow" , "#pageID" , function(){
// Will be executed after the page is displayed
});
})()
http://goo.gl/0Zwgnd
$('#id').on('tap', function () {});
$('#id').on('taphold', function () {});
$('#id').on('swipe', function () {});
$('#id').on('swipeleft', function () {});
$('#id').on('swiperight', function () {});
Five kinds of pages touch events
http://goo.gl/S5bJNq
Events
Touch
$(window).on('orientationchange', function (event) {});
Detect rotation event for mobile devices
http://goo.gl/HnE1Fe
Events
orientationchange
After a series of presentations
Everyone should understand a little jQuery Mobile
right?
? ? ? ? ?
Let's look at some examples of jQuery Mobile
Example 1 
Change font size
http://goo.gl/ov5WEf
http://goo.gl/ppFIWB
Example 2 
Palette
http://goo.gl/wiJ2BX
Example 3 
Ordering System
Example 4 
EZoApp Map
http://goo.gl/UZp0Vb
The above is a basic introduction to jQuery Mobile
If you are interested, you can learn more on the official website
http://jquerymobile.com/
Or use EZoApp
http://jqmdesigner.appspot.com/
Thank you

Weitere Àhnliche Inhalte

Was ist angesagt?

Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4
Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4
Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4성음 한
 
Enjoy the vue.js
Enjoy the vue.jsEnjoy the vue.js
Enjoy the vue.jsTechExeter
 
Vue.js for beginners
Vue.js for beginnersVue.js for beginners
Vue.js for beginnersJulio Bitencourt
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to JqueryAmzad Hossain
 
Angular JS blog tutorial
Angular JS blog tutorialAngular JS blog tutorial
Angular JS blog tutorialClaude Tech
 
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django application
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django applicationDjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django application
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django applicationMasashi Shibata
 
WordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin PagesWordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin PagesBrandon Dove
 
ChocolateChip-UI
ChocolateChip-UIChocolateChip-UI
ChocolateChip-UIGeorgeIshak
 
Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkRishabh Rao
 
Jquery Cheatsheet
Jquery CheatsheetJquery Cheatsheet
Jquery CheatsheetDaniel Downs
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQueryAchmad Solichin
 
The Point of Vue - Intro to Vue.js
The Point of Vue - Intro to Vue.jsThe Point of Vue - Intro to Vue.js
The Point of Vue - Intro to Vue.jsHolly Schinsky
 
Secure WordPress Development Practices
Secure WordPress Development PracticesSecure WordPress Development Practices
Secure WordPress Development PracticesBrandon Dove
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobilemowd8574
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump StartHaim Michael
 
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
 
Introduction Ă  AngularJS
Introduction Ă  AngularJSIntroduction Ă  AngularJS
Introduction Ă  AngularJSNicolas PENNEC
 
Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Joao Lucas Santana
 
jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014dmethvin
 

Was ist angesagt? (20)

Jquery mobile
Jquery mobileJquery mobile
Jquery mobile
 
Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4
Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4
Ionicá„‹á…łá„…á…© 모버ᄋᅔᆯᄋᅹᆞ á„†á…Ąá†«á„ƒá…łá†Żá„€á…” #4
 
Enjoy the vue.js
Enjoy the vue.jsEnjoy the vue.js
Enjoy the vue.js
 
Vue.js for beginners
Vue.js for beginnersVue.js for beginners
Vue.js for beginners
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
Angular JS blog tutorial
Angular JS blog tutorialAngular JS blog tutorial
Angular JS blog tutorial
 
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django application
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django applicationDjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django application
DjangoケプăƒȘăźăƒ‡ăƒ—ăƒ­ă‚€ă«é–ąă™ă‚‹ăƒ—ăƒ©ă‚Żăƒ†ă‚Łă‚č / Deploy django application
 
WordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin PagesWordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin Pages
 
ChocolateChip-UI
ChocolateChip-UIChocolateChip-UI
ChocolateChip-UI
 
Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile framework
 
Jquery Cheatsheet
Jquery CheatsheetJquery Cheatsheet
Jquery Cheatsheet
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
The Point of Vue - Intro to Vue.js
The Point of Vue - Intro to Vue.jsThe Point of Vue - Intro to Vue.js
The Point of Vue - Intro to Vue.js
 
Secure WordPress Development Practices
Secure WordPress Development PracticesSecure WordPress Development Practices
Secure WordPress Development Practices
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump Start
 
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
 
Introduction Ă  AngularJS
Introduction Ă  AngularJSIntroduction Ă  AngularJS
Introduction Ă  AngularJS
 
Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)
 
jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014jQuery Conference Chicago - September 2014
jQuery Conference Chicago - September 2014
 

Andere mochten auch

5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚
5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚
5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚gper2014
 
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčσηgper2014
 
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όας
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… ΌαςΟ ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όας
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όαςgper2014
 
SRISAISEVASANSTHAN
SRISAISEVASANSTHANSRISAISEVASANSTHAN
SRISAISEVASANSTHANsandeep sharma
 
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3Huang Tim
 
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎż
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎżÏ„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎż
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎżgper2014
 
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...gper2014
 
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚ ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚ gper2014
 
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713EZoApp
 
Rematia teliko
Rematia telikoRematia teliko
Rematia telikogper2014
 
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏ
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏÎ‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏ
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏgper2014
 
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013gper2014
 
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐž
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐžĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐž
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐžSam Um Ray
 
Yahoo
YahooYahoo
Yahoossalha
 
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013gper2014
 
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…gper2014
 
Intuit
IntuitIntuit
Intuitssalha
 

Andere mochten auch (20)

5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚
5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚
5Îż ÎłÏ…ÎŒÎœÎŹÏƒÎčÎż Îœ. ÎčÏ‰ÎœÎŻÎ±Ï‚
 
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση
1. ΜΔταΜαστΔυτÎčÎșό ΑÎčγαίο 2. ΑΜΞρωπÎčÎŹ υπό Î”ÎŸÎ±Ï†ÎŹÎœÎčση
 
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όας
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… ΌαςΟ ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όας
Ο ÎșÎźÏ€ÎżÏ‚ Ï„ÎżÏ… ÏƒÏ‡ÎżÎ»Î”ÎŻÎżÏ… Όας
 
SRISAISEVASANSTHAN
SRISAISEVASANSTHANSRISAISEVASANSTHAN
SRISAISEVASANSTHAN
 
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3
æž¶ç«™ć‰äž€ćźšèŠäžŠçš„10栂èȘČ ch3
 
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎż
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎżÏ„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎż
Ï„Îż ΎΔλφÎčÎœÎżÎșόρÎčÏ„ÏƒÎż
 
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...
Από Ï„Îż Î€Î±ÎŻÎœÎ±ÏÎż έως τη Î˜ÏÎŹÎșη : Ίύση, Î±ÏÏ‡Î±ÎŻÎ± Ξέατρα ÎșαÎč ÏƒÏ„ÎŹÎŽÎčα, ΌΔ Ï€ÎœÎżÎź ÎșαÎč ΌΔρ...
 
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚ ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚
ÎŁÏ‡ÎżÎ»ÎčÎșοί Î±ÎłÏÏŒÏ„Î”Ï‚
 
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713
JQuery Mobile æĄ†æž¶ä»‹çŽčèˆ‡äœżç”š 20140713
 
Srisai ppt
Srisai pptSrisai ppt
Srisai ppt
 
Lead Generation WP
Lead Generation WPLead Generation WP
Lead Generation WP
 
Rematia teliko
Rematia telikoRematia teliko
Rematia teliko
 
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏ
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏÎ‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏ
Î‘ÎœÎŹÎČρυτα-Î”ÎŹÏƒÎżÏ‚ ÎŁÏ…ÎłÎłÏÎżÏ. Î”ÏÏŒÎŒÎżÎč Ï„ÎżÏ… ÎœÎ”ÏÎżÏ
 
Bilaspur Tourism
Bilaspur TourismBilaspur Tourism
Bilaspur Tourism
 
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013
πΔρÎčÎČÎ±Î»Î»ÎżÎœÏ„ÎčÎșÎź 2012 2013
 
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐž
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐžĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐž
ĐŸĐŸŃ…ĐŸĐŽĐ¶Đ”ĐœĐœŃ Đ»ŃŽĐŽĐžĐœĐž
 
Yahoo
YahooYahoo
Yahoo
 
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013
Î”ÏÎłÎ±ÏƒÎčα ÏƒÏ…ÎœÎżÎ»ÎčÎșÎź Oryktos ploutos metallevmata 3o gym kifisias 2012 2013
 
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…
5Îż ÎłÏ…ÎŒÎœÎ±ÏƒÎčÎż Î‘ÎŒÎ±ÏÎżÏ…ÏƒÎŻÎżÏ… - ΔηΌÎčÎżÏ…ÏÎłÎŻÎ± λαχαΜόÎșÎ·Ï€ÎżÏ…
 
Intuit
IntuitIntuit
Intuit
 

Ähnlich wie jQuery Mobile Introduction ( demo on EZoapp )

Vue.js - zastosowanie i budowa komponentĂłw
Vue.js - zastosowanie i budowa komponentĂłwVue.js - zastosowanie i budowa komponentĂłw
Vue.js - zastosowanie i budowa komponentĂłwLaravel Poland MeetUp
 
QCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIQCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIOliver HĂ€ger
 
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...Nagios
 
Angular js quickstart
Angular js quickstartAngular js quickstart
Angular js quickstartLinkMe Srl
 
multiple views and routing
multiple views and routingmultiple views and routing
multiple views and routingBrajesh Yadav
 
Once Source to Rule Them All
Once Source to Rule Them AllOnce Source to Rule Them All
Once Source to Rule Them AllDavid Yeiser
 
Understanding form helpers
Understanding form helpersUnderstanding form helpers
Understanding form helpersBruno Almeida
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2James Pearce
 
Jquery mobile2
Jquery mobile2Jquery mobile2
Jquery mobile2Inbal Geffen
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoRob Bontekoe
 
Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckAnthony Montalbano
 
Getting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web DevelopmentGetting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web DevelopmentLaurence Svekis ✔
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and PluginsMarc Grabanski
 
Bootstrap [part 2]
Bootstrap [part 2]Bootstrap [part 2]
Bootstrap [part 2]Ghanshyam Patel
 

Ähnlich wie jQuery Mobile Introduction ( demo on EZoapp ) (20)

iWebkit
iWebkitiWebkit
iWebkit
 
Vue.js - zastosowanie i budowa komponentĂłw
Vue.js - zastosowanie i budowa komponentĂłwVue.js - zastosowanie i budowa komponentĂłw
Vue.js - zastosowanie i budowa komponentĂłw
 
QCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIQCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UI
 
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
 
Angular js quickstart
Angular js quickstartAngular js quickstart
Angular js quickstart
 
multiple views and routing
multiple views and routingmultiple views and routing
multiple views and routing
 
Magento20100807
Magento20100807Magento20100807
Magento20100807
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Once Source to Rule Them All
Once Source to Rule Them AllOnce Source to Rule Them All
Once Source to Rule Them All
 
Understanding form helpers
Understanding form helpersUnderstanding form helpers
Understanding form helpers
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2
 
Jquery mobile2
Jquery mobile2Jquery mobile2
Jquery mobile2
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
 
Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages Suck
 
Getting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web DevelopmentGetting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web Development
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
jQuery
jQueryjQuery
jQuery
 
JQuery Mobile UI
JQuery Mobile UIJQuery Mobile UI
JQuery Mobile UI
 
Bootstrap [part 2]
Bootstrap [part 2]Bootstrap [part 2]
Bootstrap [part 2]
 

KĂŒrzlich hochgeladen

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
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
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
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
 

KĂŒrzlich hochgeladen (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
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, ...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
"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 ...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
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
 

jQuery Mobile Introduction ( demo on EZoapp )

  • 2. What is jQuery Mobile
  • 4. So simple, we all know it!
  • 5. But, What is jQuery Mobile? Can we eat it?
  • 6. Features Powerful Ajax-powered navigation system HTML5 Markup-driven configuration Built on jQuery core Responsive design Progressive enhancement Touch and mouse event support Lightweight size Compatible with all major mobile, tablet, e-reader & desktop platforms Unified UI widgets
  • 7. However, I heard that jQuery Mobile is fat
  • 8. jQuery Mobile Version 1.4.3 Significantly improved performance than ever
  • 10. Let’s Learn jQuery Mobile
  • 11. <link rel="stylesheet" href="jquery.mobile.min.css" /> <script src="jquery.min.js"></script> <script src="jquery.mobile.min.js"></script> jQuery Mobile preloaded program
  • 12. <head> <title>jQuery Mobile</title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile.min.css" /> <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script> <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile.min.js"></script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>header</h1> </div> <div class="ui-content"> <p>content</p> </div> <div data-role="footer"> <h4>footer</h4> </div> </div> </body> First step
  • 13. <div id="page1" data-role="page"> <div role="main" class="ui-content"></div> </div> <div id="page2" data-role="page"> <div role="main" class="ui-content"></div> </div> <div id="page3" data-role="page"> <div role="main" class="ui-content"></div> </div> JQuery Mobile is usually a multiple page However, only one of which is displayed, page id must be separated page
  • 14. page Feel Page on EZoApp http://goo.gl/EmXUY9
  • 15. ★ Use <href>, switch directly to the specified "Page Id" ★ Using "data-transition" set the transition effect ★ Set data-rel = "back" to return with the same effect page transition <a href="#pageID" data-transition="效果"></a> ★ You can also use javascript to do the switch ★ $.mobile.changePage('#PageID'); ★ $.mobile.changePage('#PageB' , {'transition':'Effect'} );
  • 16. ● default ● fade ● flip ● flow ● pop ● slide ● slidefade ● slideup ● slidedown ● turn ● none <a href="#pageID" data-transition="effect"></a> example http://goo.gl/xwIR0F page transition
  • 17. Button <a href="#" class="ui-btn">Anchor</a> <button class="ui-btn">Button</button> Use the "class" generate button style <a href="#" class="ui-btn ui-btn-inline">Anchor</a> <button class="ui-btn ui-btn-inline">Button</button>
  • 18. Button ICON <button class="ui-btn ui-btn-icon-left ui-icon-action">action</button> <button class="ui-btn ui-btn-icon-left ui-icon-alert">alert</button> <button class="ui-btn ui-btn-icon-up ui-icon-arrow-d">arrow-d</button> <button class="ui-btn ui-btn-icon-right ui-icon-arrow-d-l">arrow-d-l</button> <button class="ui-btn ui-btn-icon-bottom ui-icon-arrow-d-r">arrow-d-r</button> <button class="ui-btn ui-btn-icon-left ui-icon-arrow-l">arrow-l</button> example http://goo.gl/TQxnvm Use the "class" generate button style
  • 19. Grid <div class="ui-grid-b"> <div class="ui-block-a">Block A</div> <div class="ui-block-b">Block B</div> <div class="ui-block-c">Block C</div> </div> Use "class" generates Grid, you can put the Grid in Grid ui-grid-a : 2 columnsui-grid-b3 columns ui-grid-c4 columnsui-grid-d5 columns example: http://goo.gl/AizA2f
  • 20. Input <div class="ui-field-contain"> <label for="#text_id">Title</label> <input type="text" name="" id="#text_id"> </div> <div class="ui-field-contain"> <label for="#textarea_id">Title</label> <textarea name="" id="#textarea_id"></textarea> </div> <div class="ui-field-contain"> <label for="#search_id">Title</label> <input type="search" name="" id="#search_id"> </div> example: http://goo.gl/XOXJPH
  • 21. theme Use "class" have different themes 按鈕 <a href="#" class="ui-btn ui-btn-a">Theme A</a> <a href="#" class="ui-btn ui-btn-b">Theme B</a> navbar <div data-role="navbar"> <ul> <li><a data-theme="a">Theme A</a></li> <li><a data-theme="b">Theme B</a></li> </ul> </div> example: http://goo.gl/E8QcW9
  • 22. Some examples of the above, we see that "class" is very important
  • 24. Of course ! The second is also very important: data attribute 2
  • 25. What is data attribute
  • 26. The data-* attributes is used to store custom data private to the page or application. The data-* attributes gives us the ability to embed custom data attributes on all HTML elements. jQuery Mobile data attribute http://api.jquerymobile.com/data-attribute/
  • 27. Header & Footer <div data-role="header" data-position="fixed"> <h1>header</h1> </div> <div data-role="footer" data-position="fixed"> <h4>footer</h4> </div> example: http://goo.gl/YpuDEY
  • 28. Navbar <div data-role="navbar"> <ul> <li><a href="#">One</a></li> <li><a href="#">Two</a></li> </ul> </div> example: http://goo.gl/3nwwe1
  • 29. Radio button <form> <fieldset data-role="controlgroup" data-type="horizontal"> <legend>Horizontal:</legend> <input type="radio" name="radio-choice-h-2" id="radio-choice-h-2a" value="on" checked="checked"> <label for="radio-choice-h-2a">One</label> <input type="radio" name="radio-choice-h-2" id="radio-choice-h-2b" value="off"> <label for="radio-choice-h-2b">Two</label> <input type="radio" name="radio-choice-h-2" id="radio-choice-h-2c" value="other"> <label for="radio-choice-h-2c">Three</label> </fieldset> </form> example: http://goo.gl/Vh67Vf
  • 30. Check box <form> <fieldset data-role="controlgroup"> <legend>Vertical:</legend> <input type="checkbox" name="checkbox-v-2a" id="checkbox-v-2a"> <label for="checkbox-v-2a">One</label> <input type="checkbox" name="checkbox-v-2b" id="checkbox-v-2b"> <label for="checkbox-v-2b">Two</label> <input type="checkbox" name="checkbox-v-2c" id="checkbox-v-2c"> <label for="checkbox-v-2c">Three</label> </fieldset> </form> example: http://goo.gl/x7vfGr
  • 31. Flip switch <form> <label for="flip-2">Flip toggle switch:</label> <select name="flip-2" id="flip-2" data- role="flipswitch" data-theme="b"> <option value="off">Off</option> <option value="on">On</option> </select> </form> example: http://goo.gl/83Mn0z
  • 32. Listview <ul data-role="listview" data-inset="true" data-divider-theme="a"> <li data-role="list-divider">Mail</li> <li><a href="#">Inbox</a></li> <li><a href="#">Outbox</a></li> <li data-role="list- divider">Contacts</li> <li><a href="#">Friends</a></li> <li><a href="#">Work</a></li> </ul> Use "data-role" to easily create "listview (filter)" example: http://goo.gl/XjmWug
  • 33. Popup <a href="#popupID" data-rel="popup" class="ui-btn" data- transition="pop">Popup</a> <div data-role="popup" id="popupID"> <p>popup 慧ćźč</p> </div> example: http://goo.gl/7rcO1C
  • 34. Table <table data-role="table" id="table-column-toggle" data- mode="columntoggle" class="ui-responsive table-stroke"> <thead> 慧ćźč省畄 </thead> <tbody> 慧ćźč省畄 </tbody> </table> http://goo.gl/pMJlkP (columntoggle / Reflow)
  • 35. Slide Panel <div id="left-menu" data-role="panel" data-position="left"> left menu </div> <div id="right-menu" data-role="panel" data- position="right"> right menu </div> It is like App slider menu example: http://goo.gl/jM6sU3
  • 36. How to make "jQuery Mobile" work? How ?
  • 37. Events Page (function (){ $(document).on( "pageinit" , "#pageID" , function(){ // Page first loads will be executed }); })() (function (){ $(document).on( "pageshow" , "#pageID" , function(){ // Will be executed after the page is displayed }); })() http://goo.gl/0Zwgnd
  • 38. $('#id').on('tap', function () {}); $('#id').on('taphold', function () {}); $('#id').on('swipe', function () {}); $('#id').on('swipeleft', function () {}); $('#id').on('swiperight', function () {}); Five kinds of pages touch events http://goo.gl/S5bJNq Events Touch
  • 39. $(window).on('orientationchange', function (event) {}); Detect rotation event for mobile devices http://goo.gl/HnE1Fe Events orientationchange
  • 40. After a series of presentations Everyone should understand a little jQuery Mobile right? ? ? ? ? ?
  • 41. Let's look at some examples of jQuery Mobile
  • 42. Example 1  Change font size http://goo.gl/ov5WEf
  • 45. Example 4  EZoApp Map http://goo.gl/UZp0Vb
  • 46. The above is a basic introduction to jQuery Mobile If you are interested, you can learn more on the official website http://jquerymobile.com/