Skip to content

Instantly share code, notes, and snippets.

@hugobarauna
Forked from lucasmazza/dabblet.css
Created August 23, 2013 13:59
Show Gist options
  • Save hugobarauna/6319613 to your computer and use it in GitHub Desktop.
Save hugobarauna/6319613 to your computer and use it in GitHub Desktop.
seta com animacao
/**
* seta com animacao
*/
span {
animation: bounce 0.7s infinite ease;
position: relative;
font-size: 3em;
}
@keyframes bounce {
0% {
opacity: 1;
top: 0;
}
100% {
opacity: 0;
top: 20px;
}
}
<span>↓</span>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment