Files
ionic-framework/example/pull-to-refresh.html
2013-08-26 15:22:38 -05:00

33 lines
840 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Pull To Refresh</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="../../dist/framework.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Pull To Refresh</h1>
</header>
<main class="ptr-capable has-header">
<p>Pull the content down to refresh.</p>
</main>
<section class="ptr-content has-header">
<div class="pulling">KEEP GOING</div>
<div class="refreshing">REFRESHING!</div>
</section>
</section>
</body>
</html>