23 lines
751 B
HTML
23 lines
751 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=no">
|
|
<title>swipe-pages Demo</title>
|
|
|
|
<script src="../platform/platform.js"></script>
|
|
<link rel="import" href="swipe-pages.html">
|
|
|
|
</head>
|
|
<body unresolved fullbleed layout vertical center center-justified>
|
|
<swipe-pages>
|
|
<swipe-page style="background-color: blue" layout vertical>
|
|
<div style="top: 50%; height: 100%; width: 100%; background-color:beige"></div>
|
|
</swipe-page>
|
|
<swipe-page style="background-color: red"></swipe-page>
|
|
<swipe-page style="background-color: green"></swipe-page>
|
|
<swipe-page style="background-color: indigo"></swipe-page>
|
|
</swipe-pages>
|
|
|
|
</body>
|
|
</html>
|