Bouncing Arrow
HTML
<span class="arrow">⇓</span>
CSS
.arrow {
position: absolute;
margin: auto;
top: 0; bottom: 0;
left: 0; right: 0;
width: 40px;
height: 30px;
font-size: 40px;
line-height: 20px;
-webkit-animation: bounce 2s infinite ease-in-out;
}
@-webkit-keyframes bounce {
0% { transform: translateY(-5px) }
50% { transform: translateY(5px) }
100% { transform: translateY(-5px) }
}