neilgee
12/30/2015 - 6:10 AM

Add CSS 3 Animations to Your Genesis Theme

Add CSS 3 Animations to Your Genesis Theme

<h1 class="animated bounce">My Animated Element</h1>
<?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');

}
#my-animated-element {
	-webkit-animation-duration: 3s;
    animation-duration: 3s;
}