Created
April 8, 2015 15:17
-
-
Save tyage/9d2fefea09f97df89054 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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