Skip to content

Instantly share code, notes, and snippets.

@tyage
Created April 8, 2015 15:17
Show Gist options
  • Save tyage/9d2fefea09f97df89054 to your computer and use it in GitHub Desktop.
Save tyage/9d2fefea09f97df89054 to your computer and use it in GitHub Desktop.
<link rel="import" href="./bower_components/polymer/polymer.html">
<polymer-element name="my-marquee" noscript>
<template>
<style>
div {
position: absolute;
-webkit-animation: background-animation 3s ease 0s infinite alternate;
}
@-webkit-keyframes background-animation {
0% {
left: 0;
}
100% {
left: 200px;
}
}
</style>
<div class="test"><content></content></div>
</template>
</polymer-element>
<my-marquee>test</my-marquee>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment