Created
July 26, 2013 14:23
-
-
Save Jorger/6089242 to your computer and use it in GitHub Desktop.
A CodePen by Jorger.
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
<div id = 'circulo'> | |
<b>Botón</b> | |
</div> |
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
@-webkit-keyframes movimiento | |
{ | |
0% | |
{ | |
left: 20px; | |
} | |
50% | |
{ | |
background: blue; | |
left: 300px; | |
} | |
100% | |
{ | |
left: 20px; | |
/*top: 100px;*/ | |
} | |
} | |
#circulo | |
{ | |
background: red; | |
border-radius: 50px; | |
color: white; | |
height: 60px; | |
left: 20px; | |
padding-top: 40px; | |
position: absolute; | |
width: 100px; | |
text-align: center; | |
text-shadow: 1px 1px 1px black; | |
top:10px; | |
-webkit-animation: movimiento 5s infinite; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment