Skip to content

Instantly share code, notes, and snippets.

@neilgee
Last active June 7, 2016 03:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save neilgee/6fab8b102e09c4e981b4 to your computer and use it in GitHub Desktop.
Save neilgee/6fab8b102e09c4e981b4 to your computer and use it in GitHub Desktop.
Add CSS 3 Animations to Your Genesis Theme
#my-animated-element {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
<?php //<~ don't add me in
//Animate CSS
add_action( 'wp_enqueue_scripts', 'wpb_animate_styles' );
function wpb_animate_styles() {
wp_enqueue_style( 'animate-css', get_stylesheet_directory_uri() . '/css/animate.min.css', '3.5.0', 'all');
}
<h1 class="animated bounce">My Animated Element</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment