Browse Source

new example of collapsible content

master
T. Meissner 12 years ago
parent
commit
69e489e133
1 changed files with 41 additions and 0 deletions
  1. +41
    -0
      ch03_07.html

+ 41
- 0
ch03_07.html View File

@ -0,0 +1,41 @@
<!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>Collapsible content</h1>
</div>
<div data-role="content">
<div data-role="collapsible" data-collapsed="false">
<h2>History of Rome</h2>
<p>
There is archaeological evidence of human occupation in the Rome area
from at least 14,000 years, but the dense layer of much younger debris
obscures Palaeolithic and Neolithic sites.[11] Evidence of stone tools,
pottery ans stone weapons attest to at least 10,000 years of human presence.
</p>
</div>
<div data-role="collapsible" >
<h2>Government of Rome</h2>
<p>
Rome constitutes one of Italy's 8,101 communes, and is the largest both
in terms of land area and population. it is governed by a mayor, currently
Gianni Alemanno, and a city council.
</p>
</div>
</div>
<div data-role="footer" data-position="fixed">
<h1>www.goodcleanfun.de</h1>
</div>
</div>
</body>
</html>

Loading…
Cancel
Save