Skip to content

Instantly share code, notes, and snippets.

@Donkfather
Created August 4, 2014 20:34
Show Gist options
  • Save Donkfather/fecf03ccbc9fa352a327 to your computer and use it in GitHub Desktop.
Save Donkfather/fecf03ccbc9fa352a327 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="core-slideshow">
<template>
<style>
:host {
position: absolute;
background: white;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_animated_pages {
width: 800px;
height: 400px;
overflow: hidden;
left: 110px;
top: 60px;
position: absolute;
background-color: rgb(238, 238, 238);
}
</style>
<content></content>
<button>Hello</button>
<core-animated-pages selectedindex="0" notap id="core_animated_pages" center vertical layout>
<section id="section" layout horizontal center center-justified active>1
</section>
<section id="section1">2
</section>
<section id="section2">3
</section>
</core-animated-pages>
</template>
<script>
Polymer('core-slidehsow', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment