jQuery Mobile

Jquery 모바일: 테마

netyhobby 2016. 6. 1. 10:19

Jquery Mobile: Theme


Jquery 모바일: 테마


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>JQuery Mobile</title>

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

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

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

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

</head>

<body>

 

 <!-- 첫번째 페이지 -->

<section id="page1" data-role="page">

<header data-role="header" data-theme="a">

<h1>JQuery Mobile Theme a</h1>

</header>

<header data-role="header" data-theme="b">

<h1>JQuery Mobile Theme b</h1>

</header>

<header data-role="header" data-theme="c">

<h1>JQuery Mobile Theme c</h1>

</header>

<header data-role="header" data-theme="d">

<h1>JQuery Mobile Theme d</h1>

</header>

<header data-role="header" data-theme="e">

<h1>JQuery Mobile Theme e</h1>

</header>

<div class="content" data-role="content" data-theme="a">

<p>theme a</p>

<a href="#"  data-theme="a">theme a</a>

</div>

<div class="content" data-role="content" data-theme="b">

<p>theme b</p>

<a href="#"  data-theme="b">theme b</a>

</div>

<div class="content" data-role="content" data-theme="c">

<p>theme c</p>

<a href="#"  data-theme="c">theme c</a>

</div>

<div class="content" data-role="content" data-theme="d">

<p>theme d</p>

<a href="#"  data-theme="d">theme d</a>

</div>

<div class="content" data-role="content" data-theme="e">

<p>theme e</p>

<a href="#"  data-theme="e">theme e</a>

</div>

<footer data-role="footer">

<h2>ⓒcopyright 2016</h2>

</footer>

</section>


</body>

</html>