Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <link rel="import" href="../core-animated-pages/core-animated-pages.html">
  2. <link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
  3. <link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
  4. <link rel="import" href="../core-animated-pages/transitions/slide-down.html">
  5. <link rel="import" href="../core-animated-pages/transitions/slide-up.html">
  6. <link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
  7. <link rel="import" href="../core-pages/core-pages.html">
  8.  
  9. <polymer-element name="my-element">
  10.  
  11. <template>
  12. <style>
  13. :host {
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. box-sizing: border-box;
  18. }
  19. #core_pages {
  20. width: 400px;
  21. height: 400px;
  22. border: 1px solid silver;
  23. }
  24. #core_animated_pages {
  25. width: 420px;
  26. height: 582px;
  27. overflow: hidden;
  28. left: 280px;
  29. top: 60px;
  30. position: absolute;
  31. background-color: rgb(238, 238, 238);
  32. }
  33. </style>
  34. <core-animated-pages selectedindex="0" notap id="core_animated_pages">
  35. <section id="section" layout horizontal center center-justified active>
  36. <core-pages selected="0" selectedindex="0" notap id="core_pages">
  37. <section id="section3" active>Page One</section>
  38. <section id="section4">Page Two</section>
  39. </core-pages>
  40. </section>
  41. <section id="section1">
  42. </section>
  43. <section id="section2">
  44. </section>
  45. </core-animated-pages>
  46. </template>
  47.  
  48. <script>
  49.  
  50. Polymer({
  51.  
  52. });
  53.  
  54. </script>
  55.  
  56. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement