Skip to content

Instantly share code, notes, and snippets.

@d0nkeyBOB
Created June 12, 2014 14:50
Show Gist options
  • Save d0nkeyBOB/87270ddc498c7a4630b2 to your computer and use it in GitHub Desktop.
Save d0nkeyBOB/87270ddc498c7a4630b2 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../yt-video/yt-search-video.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#cool_clock {
width: 400px;
height: 300px;
left: 10px;
top: 10px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 310px;
top: 240px;
position: absolute;
}
#google_map1 {
width: 400px;
height: 400px;
display: block;
left: 860px;
top: 610px;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 460px;
top: 30px;
position: absolute;
}
#three_js_geometry {
left: 160px;
top: 490px;
position: absolute;
}
#three_js_geometry1 {
left: 450px;
top: 450px;
position: absolute;
}
#img {
left: 140px;
top: 430px;
position: absolute;
}
#three_js_cube {
left: 210px;
top: 470px;
position: absolute;
}
</style>
<cool-clock skin="Sun" id="cool_clock"></cool-clock>
<yt-search-video imfeelinglucky="cheese" id="yt_search_video"></yt-search-video>
<img id="img" src="/bowertopia/components/three-js/threejs.jpg"></img>
<three-js-cube color="2017398" x="20" y="10" z="30" castshadow id="three_js_cube" lightdom>what!!!!</three-js-cube>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment