mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
33 lines
809 B
HTML
33 lines
809 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="/vendor/font-awesome/css/font-awesome.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../dist/ionic.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>
|