mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
33 lines
716 B
HTML
33 lines
716 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Progress</title>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
<link href="../../dist/css/ionic.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
position: absolute;;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Progress</h1>
|
|
</header>
|
|
|
|
<main class="content padding has-header">
|
|
|
|
<progress></progress>
|
|
|
|
<progress value=3 max=10></progress>
|
|
|
|
<progress value=7 max=10></progress>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|