|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>My first jQuery Mobile code</title>
|
|
<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 type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
|
|
<body>
|
|
<div data-role="page" id="home">
|
|
<div data-role="header" data-position="fixed">
|
|
<h1>Buttons</h1>
|
|
</div>
|
|
<div data-role="content">
|
|
<a href="#" data-role="button" data-icon="plus" data-iconpos="right">Button 1</a>
|
|
<a href="#" data-role="button" data-icon="check" data-iconpos="left">Button 2</a>
|
|
<a href="#" data-role="button">Button 3</a>
|
|
<div data-role="controlgroup" data-type="horizontal">
|
|
<a href="#" data-role="button" data-icon="refresh" data-iconpos="bottom">Button 1</a>
|
|
<a href="#" data-role="button" data-icon="gear" data-iconpos="top">Button 2</a>
|
|
</div>
|
|
<div data-role="controlgroup" data-type="horizontal">
|
|
<a href="#" data-role="button" data-icon="refresh" data-iconpos="notext">Button 1</a>
|
|
<a href="#" data-role="button" data-icon="gear" data-iconpos="notext">Button 2</a>
|
|
</div>
|
|
<a href="#" data-role="button" data-icon="refresh" data-iconpos="left" data-iconshadow="false">Button 1</a>
|
|
<a href="#" data-role="button" data-icon="gear" data-iconpos="right" data-iconshadow="false">Button 2</a>
|
|
</div>
|
|
<div data-role="footer" data-position="fixed">
|
|
<h1>www.goodcleanfun.de</h1>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|