Created
September 25, 2017 11:41
-
-
Save topleague/cb118777afb052809a77d25a0bf2b869 to your computer and use it in GitHub Desktop.
FadeUp Animation in Genesis
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
//* 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