Skip to content

Instantly share code, notes, and snippets.

@sandor
Last active October 27, 2015 08:40
Show Gist options
  • Select an option

  • Save sandor/a103430b40e3757a7f3d to your computer and use it in GitHub Desktop.

Select an option

Save sandor/a103430b40e3757a7f3d to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<polymer-element name="my-element">
<template>
<style>
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
background-color: rgb(238, 238, 238);
left: 360px;
top: 100px;
position: absolute;
}
#section {
background-color: rgb(103, 42, 134);
}
#section1 {
background-color: rgb(134, 89, 42);
}
</style>
<core-animated-pages selectedindex="0" notap id="core_animated_pages">
<section id="section" layout horizontal center center-justified active>
</section>
<section id="section1">
</section>
<section id="section2">
</section>
</core-animated-pages>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment