- 浏览: 2539164 次
- 性别:
- 来自: 成都
文章分类
最新评论
-
nation:
你好,在部署Mesos+Spark的运行环境时,出现一个现象, ...
Spark(4)Deal with Mesos -
sillycat:
AMAZON Relatedhttps://www.godad ...
AMAZON API Gateway(2)Client Side SSL with NGINX -
sillycat:
sudo usermod -aG docker ec2-use ...
Docker and VirtualBox(1)Set up Shared Disk for Virtual Box -
sillycat:
Every Half an Hour30 * * * * /u ...
Build Home NAS(3)Data Redundancy -
sillycat:
3 List the Cron Job I Have>c ...
Build Home NAS(3)Data Redundancy
Mobile Jquery(II) Jquery mobile what can it do for you
1. transition type
<li><a href="./speakers.html" data-transition="flip">Speakers</a></li>
There are 6 types:
slide Slide right to left (left to right if tapping the Back button). This is the default.
slideup
slidedown
pop Expand the new page (contract it if tapping the Back button). Great for dialogs and popups.
flip Flip the old page out and the new page in, like flipping a card.
fade Fade the new page in (fade it out if tapping the Back button).
2. data role type: button
<p><a href="./schedule.html" data-role="button">Button</a></p>
3. Collapsible content blocks
<div data-role="collapsible" data-state="collapsed">
<h2>About this demo</h2>
<p>This app rocks!</p>
<p>This is the 3 line</p>
<p>This is the 4 line</p>
</div>
4. Touch-optimized form elements
<form action="#" method="get">
</form>
just a form in content page.
text
<div data-role="fieldcontain">
<label for="name">Your Name:</label>
<input type="text" name="name" id="name" value="" />
</div>
checkbox
<div data-role="controlgroup">
<legend>Which Companies would you like?</legend>
<input type="checkbox" name="company" id="handsome" class="custom" />
<label for="handsome">Handsome</label>
<input type="checkbox" name="company" id="ghca" class="custom" />
<label for="ghca">GH-CA</label>
<input type="checkbox" name="company" id="enrising" class="custom" />
<label for="enrising">Enrising</label>
</div>
range
<div data-role="fieldcontain">
<label for="quantity">Number of Items:</label>
<input type="range" name="quantity" id="quantity" value="1" min="1" max="10" />
</div>
select-slider
<div data-role="fieldcontain">
<label for="gender">Gender:</label>
<select name="gender" id="gender" data-role="slider">
<option value="Man">Man</option>
<option value="Woman">Woman</option>
</select>
</div>
select-box
<div data-role="fieldcontain">
<label for="shippingDate">Shipping Date:</label>
<select name="shippingDate" id="shippingDate" data-native-menu="false">
<option value="standard">Standard: 7 day</option>
<option value="rush">Rush: 3 days</option>
<option value="express">Express: next day</option>
<option value="overnight">Overnight</option>
</select>
</div>
submit-button
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-a">
<div class="ui-block-a">
<button type="submit" data-theme="d">Cancel</button>
</div>
<div class="ui-block-b">
<button type="submit" data-theme="a">Order Ice Cream</button>
</div>
</fieldset>
</div>
5. List views: Lists on steroids
List view with filter
<ul data-role="listview" data-inset="true" data-filter="true">
<li>
<a href="#">The Grapes of Wrath</a>
<a href="#">Buy This Book</a>
</li>
<li>
<a href="#">The Trial</a>
<a href="#">Buy This Book</a>
</li>
<li>
<a href="#">A Tale of Two Cities</a>
<a href="#">Buy This Book</a>
</li>
</ul>
listview with count
<ul data-role="listview" data-inset="true">
<li><a href="#">SuperWidgets</a> <span class="ui-li-count">14</span></li>
<li><a href="#">MegaWidgets</a> <span class="ui-li-count">0</span></li>
<li><a href="#">WonderWidgets</a> <span class="ui-li-count">327</span></li>
</ul>
6. theming
<p><a href="./schedule.html" data-role="button" data-theme="b">Button</a></p>
There are 5 type of themings: a, b, c, d, e
7. events
...snip...
references:
http://www.elated.com/articles/jquery-mobile-what-can-it-do-for-you/
1. transition type
<li><a href="./speakers.html" data-transition="flip">Speakers</a></li>
There are 6 types:
slide Slide right to left (left to right if tapping the Back button). This is the default.
slideup
slidedown
pop Expand the new page (contract it if tapping the Back button). Great for dialogs and popups.
flip Flip the old page out and the new page in, like flipping a card.
fade Fade the new page in (fade it out if tapping the Back button).
2. data role type: button
<p><a href="./schedule.html" data-role="button">Button</a></p>
3. Collapsible content blocks
<div data-role="collapsible" data-state="collapsed">
<h2>About this demo</h2>
<p>This app rocks!</p>
<p>This is the 3 line</p>
<p>This is the 4 line</p>
</div>
4. Touch-optimized form elements
<form action="#" method="get">
</form>
just a form in content page.
text
<div data-role="fieldcontain">
<label for="name">Your Name:</label>
<input type="text" name="name" id="name" value="" />
</div>
checkbox
<div data-role="controlgroup">
<legend>Which Companies would you like?</legend>
<input type="checkbox" name="company" id="handsome" class="custom" />
<label for="handsome">Handsome</label>
<input type="checkbox" name="company" id="ghca" class="custom" />
<label for="ghca">GH-CA</label>
<input type="checkbox" name="company" id="enrising" class="custom" />
<label for="enrising">Enrising</label>
</div>
range
<div data-role="fieldcontain">
<label for="quantity">Number of Items:</label>
<input type="range" name="quantity" id="quantity" value="1" min="1" max="10" />
</div>
select-slider
<div data-role="fieldcontain">
<label for="gender">Gender:</label>
<select name="gender" id="gender" data-role="slider">
<option value="Man">Man</option>
<option value="Woman">Woman</option>
</select>
</div>
select-box
<div data-role="fieldcontain">
<label for="shippingDate">Shipping Date:</label>
<select name="shippingDate" id="shippingDate" data-native-menu="false">
<option value="standard">Standard: 7 day</option>
<option value="rush">Rush: 3 days</option>
<option value="express">Express: next day</option>
<option value="overnight">Overnight</option>
</select>
</div>
submit-button
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-a">
<div class="ui-block-a">
<button type="submit" data-theme="d">Cancel</button>
</div>
<div class="ui-block-b">
<button type="submit" data-theme="a">Order Ice Cream</button>
</div>
</fieldset>
</div>
5. List views: Lists on steroids
List view with filter
<ul data-role="listview" data-inset="true" data-filter="true">
<li>
<a href="#">The Grapes of Wrath</a>
<a href="#">Buy This Book</a>
</li>
<li>
<a href="#">The Trial</a>
<a href="#">Buy This Book</a>
</li>
<li>
<a href="#">A Tale of Two Cities</a>
<a href="#">Buy This Book</a>
</li>
</ul>
listview with count
<ul data-role="listview" data-inset="true">
<li><a href="#">SuperWidgets</a> <span class="ui-li-count">14</span></li>
<li><a href="#">MegaWidgets</a> <span class="ui-li-count">0</span></li>
<li><a href="#">WonderWidgets</a> <span class="ui-li-count">327</span></li>
</ul>
6. theming
<p><a href="./schedule.html" data-role="button" data-theme="b">Button</a></p>
There are 5 type of themings: a, b, c, d, e
7. events
...snip...
references:
http://www.elated.com/articles/jquery-mobile-what-can-it-do-for-you/
发表评论
-
ionic UI(4)ionic2 framework - basic and components and native
2016-03-24 02:33 1255ionic UI(4)ionic2 framework - b ... -
ionic UI(3)TypeScript - handbook
2016-03-22 23:21 625ionic UI(3)TypeScript - handboo ... -
ionic UI(2)ionic2 framework - TypeScript - tutorial
2016-03-22 06:52 1647ionic UI(2)ionic2 framework - T ... -
Parse and Heroku Service(3)Parse Server and Parse Dashboard
2016-03-22 06:30 960Parse and Heroku Service(3)Pars ... -
Parse and Heroku Service(2)Mail Templates and Push Notification
2016-03-22 02:45 574Parse and Heroku Service(2)Mail ... -
ionic UI(1)Introduction
2016-03-19 03:18 713ionic UI(1)Introduction 1 Inst ... -
Parse and Heroku Service(1)Heroku Installation and Play
2016-03-19 00:13 815Parse and Heroic Service(1)Hero ... -
Hybrid(5)Customize Meteor Directly Google Login
2015-09-01 02:33 907Hybrid(5)Customize Meteor Direc ... -
Hybrid(4)Favorite Places - Google Login
2015-09-01 02:02 1330Hybrid(4)Favorite Places - Goog ... -
Hybrid(3)More Meteor Example - Social
2015-08-11 05:04 749Hybrid(3)More Meteor Example - ... -
Hybrid(2)meteor Running Android and iOS
2015-07-28 23:59 1040Hybrid(2)meteor Running Android ... -
Create the Google Play Account
2015-07-18 06:42 1093Create the Google Play Account ... -
Secure REST API and Mobile(1)Document Read and Understand OAUTH2
2015-07-14 00:36 757Secure REST API and Mobile(1)Do ... -
Screen Size and Web Design
2015-07-11 01:11 718Screen Size and Web Design iPh ... -
Hybrid(1)ionic Cordova meteor
2015-06-25 05:49 459Hybrid(1)ionic Cordova meteor ... -
Android Fire Project(1)Recall Env and Knowledge
2015-02-11 12:28 673Android Fire Project(1)Recall ... -
Android Content Framework(1)Concept
2014-06-14 13:54 1068Android Content Framework(1)Con ... -
Feel Android Studio(1)Install and Update Android Studio
2014-04-11 03:12 2018Feel Android Studio(1)Install a ... -
IOS7 App Development Essentials(2)iBeacon
2014-03-05 05:55 882IOS7 App Development Essentials ... -
IOS7 App Development Essentials(1) Persistent Store
2014-03-05 05:54 1308IOS7 App Development Essentials ...
相关推荐
Pro jQuery.pdf What you’ll learn Understand the ... Use jQuery Mobile to create touch-enabled interfaces for mobile devices and tablets Extend jQuery by creating custom plugins and widgets
This hands-on guide gets straight to the essence of what’s new and important in jQuery and JavaScript, and what you need to know to build new web solutions or migrate existing sites to jQuery. ...
You can use Kode for your projects, web applications or as eCommerce dashboard. Kode coded highly responsive for your mobile phone & tablets. Kode is easily customizable with colors, widgets or ui ...
Oracle Application Express APEX is a powerful productive tool that helps you create modern web applications The goal is to make everything declarative so the developer can reduce the amount of coding ...
This is especially true if you've been using XML to do the job because it's entirely possible that you could do much of the same work with less code and less data overhead in JSON. While the book's ...
What You Will Learn: Build Desktop and HTML5 business applications for PC or mobile devices Create compelling user interfaces that can support multiple languages Fine tune your application with C#, ...
jQuery Widgets for PC, Mobile and Touch Devices jQuery Widgets for PC and Mobile What is jQWidgets? jQWidgets represents a framework based on jQuery for building web-based applications that run on ...
4. 移动设备支持:文档提到了“Building for the Mobile Web”,这意味着课程内容将包括创建适用于不同移动设备的网页和应用程序。 5. 实时通信:涉及到了“*** WebAPI and SignalR”,这表明课程将讲解如何利用***...
What You Will Learn Create stunning UIs using Bootstrap's responsive CSS classes and objects Design layouts with responsive, offsetting, nesting columns of the grid system Customize themes using the ...
What You Will Learn Discover how to use Bootstrap's components and elements, and to customize them for your own projects Understand the framework's usage in the best way with the recommended ...
In that sense, it can be said that what we'll be doing is not FP, but rather Sorta Functional Programming (SFP), aiming for a fusion of paradigms. A final comment about the style of the code in this...
In that sense, it can be said that what we'll be doing is not FP, but rather Sorta Functional Programming (SFP), aiming for a fusion of paradigms. A final comment about the style of the code in this ...
You'll also discover the principles of mobile-first design in order to ensure your pages can fit any screen size and meet the responsive requirements. Learn to play with Bootstrap's grid system and ...
You'll also discover the principles of mobile-first design in order to ensure your pages can fit any screen size and meet the responsive requirements. Learn to play with Bootstrap's grid system and ...
Make a mobile website using jQuery mobile and mobile-first design Who This Book Is For This course is for web developers who are familiar with ...
ASP.NET MVC 4 Recipes: A Problem-Solution Approach ...•using the Web API to design web services that can be consumed by mobile devices and tablets running Android, iOS, and Windows 8
You should expect a basic understanding from a collection of quick start guides, tutorials and suggestions for the devel0pment apps discussed in this book. In addition to coding examples, the book ...