Skip to content

Instantly share code, notes, and snippets.

@Jorger
Created July 26, 2013 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jorger/6089242 to your computer and use it in GitHub Desktop.
Save Jorger/6089242 to your computer and use it in GitHub Desktop.
A CodePen by Jorger.
<div id = 'circulo'>
<b>Botón</b>
</div>
@-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