Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 25, 2017 11:41
Show Gist options
  • Save topleague/cb118777afb052809a77d25a0bf2b869 to your computer and use it in GitHub Desktop.
Save topleague/cb118777afb052809a77d25a0bf2b869 to your computer and use it in GitHub Desktop.
FadeUp Animation in Genesis
//* Add extra CSS classes to animate the site-container
add_filter('genesis_attr_site-container', 'susanta_animate_site_container');
function susanta_animate_site_container($attributes) {
$attributes['class'] .= ' animate-site-container fadeUp';
return $attributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment