mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
824 B
32 lines
824 B
12 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Modal slideup</title>
|
||
|
|
||
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
||
|
|
||
|
<link rel="stylesheet" href="../dist/ratchet.css">
|
||
|
<script src="../dist/ratchet.js"></script>
|
||
|
<script src="js/docs.js"></script>
|
||
|
<script src="js/fingerblast.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="content content-padded">
|
||
|
<a href="#myModal" class="button">Open modal</a>
|
||
|
</div>
|
||
|
|
||
|
<div id="myModal" class="modal">
|
||
|
<header class="bar-title">
|
||
|
<h1 class="title">Modal</h1>
|
||
|
<a class="button" href="#myModal">
|
||
|
Close
|
||
|
</a>
|
||
|
</header>
|
||
|
|
||
|
<div class="content content-padded">
|
||
|
<p>The contents of my modal</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|