Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created February 25, 2018 00:18
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 braddalton/75915703bf45e4a3313bd66fe8e792b4 to your computer and use it in GitHub Desktop.
Save braddalton/75915703bf45e4a3313bd66fe8e792b4 to your computer and use it in GitHub Desktop.
/**
* This script adds the jquery effects to the front page of the Atmosphere Pro Theme.
*
* @package Atmosphere\JS
* @author StudioPress
* @license GPL-2.0+
*/
jQuery(function( $ ){
$( '.front-page-1' ).height(300);
// Scroll to target function.
$( '.front-page-1 a[href*="#"]:not([href="#"])' ).click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $( '[name=' + this.hash.slice(1) + ']' );
if (target.length) {
$( 'html,body' ).animate({
scrollTop: target.offset().top
}, 750 );
return false;
}
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment