Difference between revisions of "MediaWiki:Common.js"
[http://www.nga.gov/content/ngaweb/research/casva/research-projects.html A Project of the National Gallery of Art, Center for Advanced Study in the Visual Arts ]
(Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(function() { $('a[href^="#"]').click(function(e) { e.preventDefault(); var target = $(this...") |
|||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
+ | |||
+ | /*jQuery smooth scroll script*/ | ||
$(function() { | $(function() { | ||
Line 6: | Line 8: | ||
e.preventDefault(); | e.preventDefault(); | ||
var target = $(this).attr("href"); | var target = $(this).attr("href"); | ||
− | $('html, body').animate({scrollTop: $(target).offset().top | + | $('html, body').animate({scrollTop: $(target).offset().top - 10px |
}, 800); | }, 800); | ||
}); | }); | ||
}); | }); |
Revision as of 21:03, March 7, 2017
/* Any JavaScript here will be loaded for all users on every page load. */ /*jQuery smooth scroll script*/ $(function() { $('a[href^="#"]').click(function(e) { e.preventDefault(); var target = $(this).attr("href"); $('html, body').animate({scrollTop: $(target).offset().top - 10px }, 800); }); });