Skip to content

Instantly share code, notes, and snippets.

@srikat
srikat / functions.php
Created December 16, 2013 15:15
Fading away an element when scrolling down and fading it back when scrolling up in WordPress. http://sridharkatakam.com/fade-away-element-scrolling-fade-back-scrolling-wordpress/
add_action( 'wp_enqueue_scripts', 'sk_enqueue_scripts' );
function sk_enqueue_scripts() {
if ( !is_home() || !is_front_page() )
return;
wp_enqueue_script( 'scrollTo', get_stylesheet_directory_uri() . '/js/jquery.scrollTo.min.js', array( 'jquery' ), '1.4.5-beta', true );
wp_enqueue_script( 'home', get_stylesheet_directory_uri() . '/js/home.js', array( 'scrollTo' ), '', true );
}