Skip to content

Instantly share code, notes, and snippets.

@vermasachin
Created October 21, 2017 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vermasachin/9bf9f4f98189ca0537dffef98840c18b to your computer and use it in GitHub Desktop.
Save vermasachin/9bf9f4f98189ca0537dffef98840c18b to your computer and use it in GitHub Desktop.
scrollReveal.js for Genesis framework.
// Enqueue scrollReveal scripts
function enqueue_scrollreveal_scripts() {
wp_enqueue_script( 'scrollreveal', get_stylesheet_directory_uri() . '/js/scrollreveal.min.js', array( 'jquery' ),'3.3.6',true );
wp_enqueue_script( 'scrollreveal-init', get_stylesheet_directory_uri() . '/js/scrollReveal-init.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'enqueue_scrollreveal_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment