How to make android application with jquerymobile - Tutorial 2 - Header, main, footer, and pages

Tidak ada komentar
Tutorial  2 – Header, main, footer, and pages


 After you learn tutorial  1 - basic, now go to Tutorial  2 – Header, main, footer, and pages
1. Make div data-role="page" in body
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page">  
</div>
</body>
</html>

2. Make div data-role="header", in div data-role="page"
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page">
   <div data-role="header">
     <h1>this is header</h1>
   </div>
</div>
</body>
</html>

Make sure that code is right, and the result is like this.


* custom for header
 <div data-role="header" data-position="fixed">
This script make your header always on top.

3. Make div data-role="main", in div data-role="page"
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page">
   <div data-role="header">
     <h1>this is header</h1>
   </div>
<div data-role="main" class="ui-content">
<h3>This is content</h3>
</div>
</div>
</body>
</html>
Make sure that code is right, and the result is like this.


4. Make div data-role="footer", in div data-role="page"
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page">
   <div data-role="header">
     <h1>this is header</h1>
   </div>
<div data-role="main" class="ui-content">
<h3>This is content</h3>
</div>
<div data-role="footer">
<h3>This is footer</h3>
</div>
</div>
</body>
</html>
Make sure that code is right, and the result is like this.


* custom for footer
<div data-role="footer" data-position="fixed">
This script make your footer always at bottom.


5. adding pages in jquerymobile

Adding pages in jquerymobile is very simple, just make unique id to separate pages and then create a text link to connect each pages like this
<div data-role="page" id="pageone">
  <div data-role="main" class="ui-content">
    <a href="#pagetwo">Go to Page Two</a>
  </div>
</div>

<div data-role="page" id="pagetwo">
  <div data-role="main" class="ui-content">
    <a href="#pageone">Go to Page One</a>
  </div>
</div>
Make sure that code is right, and the result is like this.



Okay now go to Tutorial 3 – Navbar and Button

Tidak ada komentar :

Posting Komentar