mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title></title>
|
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
<link rel="stylesheet" href="../../../../dist/css/ionic.css" />
|
|
<script src="../../../../dist/js/ionic.js"></script>
|
|
<script src="../../../../dist/js/angular/angular.js"></script>
|
|
<script src="../../../../dist/js/angular/angular-animate.js"></script>
|
|
<script src="../../../../dist/js/angular/angular-sanitize.js"></script>
|
|
<script src="../../../../dist/js/angular-ui/angular-ui-router.js"></script>
|
|
<script src="../../../../dist/js/ionic-angular.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div ng-controller="Ctrl">
|
|
<header-bar title="title" type="bar-positive">
|
|
</header-bar>
|
|
<content has-header="true" style="background: lightblue;">
|
|
<h1>outer</h1>
|
|
<scroll style="background: lightgreen; height: 200px;">
|
|
<h1>inner</h1>
|
|
<p ng-repeat="i in range">{{i}}</p>
|
|
</scroll>
|
|
<p ng-repeat="i in range">{{i}}</p>
|
|
</content>
|
|
</div>
|
|
<script>
|
|
function Ctrl($scope) {
|
|
$scope.range = [];
|
|
for (var i=0; i<20; i++) {
|
|
$scope.range.push(i);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|