Skip to content

Instantly share code, notes, and snippets.

@rodrigomuniz
Last active August 29, 2015 14:01
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 rodrigomuniz/63ff20759ed1dbd7b492 to your computer and use it in GitHub Desktop.
Save rodrigomuniz/63ff20759ed1dbd7b492 to your computer and use it in GitHub Desktop.
Jumpy white arrow pointing down
.arrow-down {
display: block;
margin: 25px auto 0;
width: 0;
height: 0;
position: relative;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 15px solid #fff;
-webkit-animation: arrowDown 2s infinite;
-moz-animation: arrowDown 2s infinite;
animation: arrowDown 2s infinite;
}
@keyframes arrowDown {
0% {
top: 0;
}
25% {
top: 10px;
}
50% {
top: 0px;
}
}
@-webkit-keyframes arrowDown {
0% {
top: 0;
}
25% {
top: 10px;
}
50% {
top: 0px;
}
}
@-moz-keyframes arrowDown {
0% {
top: 0;
}
25% {
top: 10px;
}
50% {
top: 0px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment