Last active
August 29, 2015 14:11
-
-
Save Boztown/f4868ae22277dc86d4de to your computer and use it in GitHub Desktop.
CSS3 (Webkit) Pulsating Arrow (Fade in/out)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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