Files
ionic-framework/test/footers.html
2013-10-28 21:57:56 -05:00

64 lines
1.8 KiB
HTML

<html>
<head>
<meta charset="utf-8">
<title>Footers</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="../dist/css/ionic.css" rel="stylesheet">
<style>
.hide{display:none;}
</style>
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Footer</h1>
</header>
<main class="content padding has-header has-footer">
<p>Footer should always stay at the bottom of the screen, and on top of the main content.</p>
<p>Content element must have "has-footer" as a classname.</p>
<p><button id="btnAddMore">Dynamically Add More Content</button></p>
<div id="add-more"></div>
<p><button id="btnToggle">Toggle Content</button></p>
<p id="toggle-content" class="hide">
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
Toggled content<br>
</p>
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
</main>
<footer class="bar bar-footer bar-default">
<h3 class="title">Footer</h3>
</footer>
</body>
</html>