Sha256: c09b8ceb4e09136596da3cedf3ddabca7c187dc232e59bd0907b90c12d407d13
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 KB
Contents
<!doctype html> <!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <html> <head> <title>iron-pages</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes"> <script src="../../webcomponentsjs/webcomponents-lite.js"></script> <link rel="import" href="../iron-pages.html"> <style> html, body { height: 100%; } body { margin: 0; } iron-pages > * { height: 100%; padding: 100px 0; font-size: 50px; text-align: center; } </style> </head> <body> <iron-pages selected="0"> <div>Page One</div> <div>Page Two</div> <div>Page Three</div> </iron-pages> <script> document.addEventListener('click', function(e) { var pages = document.querySelector('iron-pages'); pages.selectNext(); }); </script> </body> </html>
Version data entries
6 entries across 6 versions & 2 rubygems