mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
39 lines
972 B
HTML
39 lines
972 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<!-- https://www.chromium.org/developers/design-documents/chromium-graphics/how-to-get-gpu-rasterization -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
<link href="/css/ionic.css" rel="stylesheet">
|
|
<style>
|
|
/* hack to create tall scrollable areas for testing using <f></f> */
|
|
f {
|
|
display: block;
|
|
margin: 10px auto;
|
|
max-width: 200px;
|
|
height: 200px;
|
|
background: blue;
|
|
}
|
|
f:last-of-type {
|
|
background: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<ion-app>
|
|
Loading...
|
|
</ion-app>
|
|
|
|
<!-- scripts auto-added by angular build process -->
|
|
$SCRIPTS$
|
|
|
|
<!-- web animations polyfill for non-chrome browsers -->
|
|
<script src="/polyfills/web-animations.min.js"></script>
|
|
<script src="https://cdn.firebase.com/js/client/2.2.4/firebase.js"></script>
|
|
|
|
</body>
|
|
</html>
|