new example page

This commit is contained in:
Adam Bradley
2013-08-26 11:32:44 -05:00
parent a3b45c3c02
commit 0db5de58b6
27 changed files with 698 additions and 90 deletions

3
example/adams/app.css Normal file
View File

@ -0,0 +1,3 @@
a {
color: #222;
}

2
example/adams/app.js Normal file
View File

@ -0,0 +1,2 @@
document.addEventListener('ontouchstart', function() {});

View File

@ -0,0 +1,69 @@
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="">
<!-- Set Apple icons for when prototype is saved to home screen -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
<link rel="stylesheet" href="../dist/framework-with-theme.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
<link rel="stylesheet" href="app.css">
<script src="app.js"></script>
</head>
<body>
<section>
<header data-template="primary-header"></header>
<main class="content-padded">
<p>
<a class="button button-default" href="grid.html">Default</a>
<a class="button button-secondary" href="index.html">Secondary</a>
<a class="button button-primary" href="listview.html">Primary</a>
<a class="button button-info" href="index.html">Info</a>
<a class="button button-success" href="index.html">Success</a>
<a class="button button-warning" href="index.html">Warning</a>
<a class="button button-danger" href="index.html">Danger</a>
<a class="button button-dark" href="index.html">Dark</a>
</p>
<p>
<div class="button-group">
<a class="button button-primary" href="index.html">Success</a>
<a class="button button-primary" href="index.html">Warning</a>
<a class="button button-primary" href="index.html">Danger</a>
<a class="button button-primary" href="index.html">Dark</a>
</div>
</p>
</main>
<footer class="bar-footer"></footer>
</section>
<script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script>
</body>
</html>

71
example/adams/index.html Normal file
View File

@ -0,0 +1,71 @@
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="">
<!-- Set Apple icons for when prototype is saved to home screen -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
<link rel="stylesheet" href="../dist/framework-with-theme.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
<link rel="stylesheet" href="app.css">
<script src="app.js"></script>
</head>
<body>
<section>
<header class="bar bar-header bar-secondary" data-template="primary-header">
<a class="button button-previous" data-history-go="-1" href="#">
<i class="icon-arrow-left"></i>
</a>
<h1 class="title">Willkommen!</h1>
<a class="button button-next" data-history-go="1" href="#">
<i class="icon-arrow-right"></i>
</a>
</header>
<main>
<p>
<a class="button button-default" href="buttons.html">Button Examples</a>
</p>
<p>
<a class="button button-default" href="listview.html">List View Example</a>
</p>
<p>
<a class="button button-default" href="grid.html">Grid Example</a>
</p>
</main>
<footer class="bar bar-footer bar-secondary">
<h1 class="title">Auf Wiedersehen</h1>
</footer>
</section>
<script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script>
</body>
</html>

27
example/alerts.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Alerts</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Alerts</h1>
</header>
<main>
</main>
</section>
</body>
</html>

View File

@ -1,3 +1,27 @@
a { .pane {
color: #222; position: fixed;
} width: 100%;
}
.reveal-animation {
/*
-webkit-transform: translate3d(0%, 0, 0);
transform: translate3d(0%, 0, 0);
-webkit-transition: -webkit-transform 1s ease-in-out;
transition: transform 1s ease-in-out;
*/
}
.reveal-animation.ng-enter {
-webkit-transition: 0.2s linear all;
-webkit-transform:translate3d(100%,0,0) ;
}
.reveal-animation.ng-enter-active {
-webkit-transform:translate3d(0,0,0) ;
}
.reveal-animation.ng-leave {
-webkit-transition: 0.2s linear all;
-webkit-transform:translate3d(0,0,0);
}
.reveal-animation.ng-leave-active {
-webkit-transform:translate3d(-100%,0,0);
}

View File

@ -1,2 +1,47 @@
document.addEventListener('touchstart', function() {});
document.addEventListener('ontouchstart', function() {}); var app = angular.module('peopleApp', ['ngRoute', 'ngAnimate']);
app.config( ["$routeProvider", function($routeProvider){
$routeProvider.when("/customers", {"templateUrl" : "customers.html", controller: 'CustomersCtrl'});
$routeProvider.when("/customer/:id", {"templateUrl" : "customer.html", controller: 'CustomerCtrl'});
$routeProvider.otherwise({"redirectTo":"/customers"});
}]
);
app.provider('Customers', function() {
var customers = [
{'name': 'Max Lynch', id: 1},
{'name': 'Max Lynch', id: 2},
{'name': 'Max Lynch', id: 3},
{'name': 'Max Lynch', id: 4},
{'name': 'Max Lynch', id: 5},
{'name': 'Max Lynch', id: 6},
{'name': 'Max Lynch', id: 7},
{'name': 'Max Lynch', id: 8},
{'name': 'Max Lynch', id: 9},
{'name': 'Max Lynch', id: 10},
{'name': 'Max Lynch', id: 11},
];
this.$get = function() {
return {
list: customers,
getById: function(id) {
for(var i = 0; i < this.list.length; i++) { if(this.list[i].id == id) return this.list[i]; }
}
}
}
});
app.controller('CustomersCtrl', function($scope, Customers) {
$scope.customers = Customers;
});
app.controller('CustomerCtrl', function($scope, $routeParams, Customers) {
var id = $routeParams.id;
var customer = Customers.getById(id);
$scope.customer = customer;
console.log('Showing user', id, customer);
});

View File

@ -0,0 +1,34 @@
<html>
<head>
<meta charset="utf-8">
<title>Button Group</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Button Group</h1>
</header>
<main class="content-padded">
<p>
<div class="button-group">
<a class="button button-primary" href="index.html">Success</a>
<a class="button button-primary" href="index.html">Warning</a>
<a class="button button-primary" href="index.html">Danger</a>
<a class="button button-primary" href="index.html">Dark</a>
</div>
</p>
</main>
</section>
</body>
</html>

View File

@ -1,36 +1,27 @@
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Example</title> <title>Buttons</title>
<!-- Sets initial viewport load and disables zooming --> <!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="">
<!-- Set Apple icons for when prototype is saved to home screen -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
<link rel="stylesheet" href="../dist/framework-with-theme.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet"> <link rel="stylesheet" href="../../dist/framework-with-theme.css">
<link rel="stylesheet" href="app.css"> <link rel="stylesheet" href="app.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-animate.min.js"></script>
<script src="app.js"></script> <script src="app.js"></script>
</head> </head>
<body> <body ng-app="peopleApp">
<section> <section>
<header data-template="primary-header"></header> <header class="bar bar-header bar-dark">
<h1 class="title">Buttons</h1>
</header>
<main class="content-padded"> <main class="content-padded">
<p> <p>
@ -43,27 +34,9 @@
<a class="button button-danger" href="index.html">Danger</a> <a class="button button-danger" href="index.html">Danger</a>
<a class="button button-dark" href="index.html">Dark</a> <a class="button button-dark" href="index.html">Dark</a>
</p> </p>
<p>
<div class="button-group">
<a class="button button-primary" href="index.html">Success</a>
<a class="button button-primary" href="index.html">Warning</a>
<a class="button button-primary" href="index.html">Danger</a>
<a class="button button-primary" href="index.html">Dark</a>
</div>
</p>
</main> </main>
<footer class="bar-footer"></footer>
</section> </section>
<script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script>
</body> </body>
</html> </html>

27
example/footers.html Normal file
View File

@ -0,0 +1,27 @@
<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="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="../../dist/framework-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Footers</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/grids.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Grids</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Grids</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/headers.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Header</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Header</h1>
</header>
<main>
</main>
</section>
</body>
</html>

View File

@ -5,67 +5,43 @@
<!-- Sets initial viewport load and disables zooming --> <!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="">
<!-- Set Apple icons for when prototype is saved to home screen -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
<link rel="stylesheet" href="../dist/framework-with-theme.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet"> <link rel="stylesheet" href="../../dist/framework-with-theme.css">
<link rel="stylesheet" href="app.css"> <link rel="stylesheet" href="app.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-animate.min.js"></script>
<script src="app.js"></script> <script src="app.js"></script>
</head> </head>
<body> <body>
<section> <section>
<header class="bar bar-header bar-secondary" data-template="primary-header"> <header class="bar bar-header bar-dark">
<a class="button button-previous" data-history-go="-1" href="#"> <h1 class="title">Framework!!</h1>
<i class="icon-arrow-left"></i>
</a>
<h1 class="title">Willkommen!</h1>
<a class="button button-next" data-history-go="1" href="#">
<i class="icon-arrow-right"></i>
</a>
</header> </header>
<main> <main class="content-padded">
<p> <p><a class="button button-default" href="alerts.html">Alerts</a></p>
<a class="button button-default" href="buttons.html">Button Examples</a> <p><a class="button button-default" href="buttons.html">Buttons</a></p>
</p> <p><a class="button button-default" href="button-groups.html">Button Groups</a></p>
<p> <p><a class="button button-default" href="footers.html">Footers</a></p>
<a class="button button-default" href="listview.html">List View Example</a> <p><a class="button button-default" href="grids.html">Grids</a></p>
</p> <p><a class="button button-default" href="headers.html">Headers</a></p>
<p> <p><a class="button button-default" href="input-slider.html">Input: Slider</a></p>
<a class="button button-default" href="grid.html">Grid Example</a> <p><a class="button button-default" href="input-text.html">Input: Text</a></p>
</p> <p><a class="button button-default" href="input-toggle.html">Input: Toggle</a></p>
<p><a class="button button-default" href="lists.html">Lists</a></p>
<p><a class="button button-default" href="modals.html">Modals</a></p>
<p><a class="button button-default" href="panels.html">Panels</a></p>
<p><a class="button button-default" href="popovers.html">Popovers</a></p>
<p><a class="button button-default" href="pull-to-refresh.html">Pull To Refresh</a></p>
<p><a class="button button-default" href="tab-bars.html">Tab Bars</a></p>
</main> </main>
<footer class="bar bar-footer bar-secondary">
<h1 class="title">Auf Wiedersehen</h1>
</footer>
</section> </section>
<script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script>
</body> </body>
</html> </html>

27
example/input-slider.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Input: Slider</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-with-theme.css">
</head>
<body ng-app="peopleApp">
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Input: Slider</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/input-text.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Input: Text</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-with-theme.css">
</head>
<body ng-app="peopleApp">
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Input: Text</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/input-toggle.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Input: Toggle</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-with-theme.css">
</head>
<body ng-app="peopleApp">
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Input: Toggle</h1>
</header>
<main>
</main>
</section>
</body>
</html>

87
example/lists.html Normal file
View File

@ -0,0 +1,87 @@
<html>
<head>
<meta charset="utf-8">
<title>Lists</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-with-theme.css">
<link rel="stylesheet" href="app.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-animate.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="peopleApp">
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Customers</h1>
</header>
<main>
<ul class="list">
<a href="#" class="list-item">
Sasafras
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Candy
<i class="icon-arrow-right"></i>
</a>
<li class="list-divider">Other things</li>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
<a href="#" class="list-item">
Cheese cords
<i class="icon-arrow-right"></i>
</a>
</ul>
</main>
</section>
</body>
</html>

27
example/modals.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Modals</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Modals</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/panels.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Panels</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Panels</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/popovers.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Popovers</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Popovers</h1>
</header>
<main>
</main>
</section>
</body>
</html>

View File

@ -0,0 +1,27 @@
<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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Pull To Refresh</h1>
</header>
<main>
</main>
</section>
</body>
</html>

27
example/tab-bars.html Normal file
View File

@ -0,0 +1,27 @@
<html>
<head>
<meta charset="utf-8">
<title>Tab Bars</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-with-theme.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Tab Bars</h1>
</header>
<main>
</main>
</section>
</body>
</html>