Skip to content

Instantly share code, notes, and snippets.

@mrjambo
Last active August 29, 2015 14:14
Show Gist options
  • Save mrjambo/13658e715674e52ae577 to your computer and use it in GitHub Desktop.
Save mrjambo/13658e715674e52ae577 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-ripple/paper-ripple.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.div1 {
width: 100px;
height: 100px;
background-color: rgb(238, 238, 238);
}
#paper_ripple {
width: 100px;
height: 100px;
}
</style>
<div class="div1">
>
</div>
<paper-ripple id="paper_ripple">
<div>
<p id="p"> Models </p
</div>
</paper-ripple>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment