Skip to content

Instantly share code, notes, and snippets.

@Boztown
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save Boztown/f4868ae22277dc86d4de to your computer and use it in GitHub Desktop.

Select an option

Save Boztown/f4868ae22277dc86d4de to your computer and use it in GitHub Desktop.
CSS3 (Webkit) Pulsating Arrow (Fade in/out)
<div class="arrow-down">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/pulse-arrow.png" />
</div>
<style type="text/css">
.arrow-down {
position: absolute;
bottom: 50px;
width: 30px;
left: 50%;
margin-left: -15px;
-webkit-animation: fadeInOut 2s infinite;
}
@-webkit-keyframes fadeInOut {
from { opacity: 0.2; }
50% { opacity: 1.0; }
to { opacity: 0.2; }
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment