$('a[data-scroll]').click(function (e) {
e.preventDefault();
//Set Offset Distance from top to account for fixed nav
var offset = 10;
var target = '#' + $(this).data('scroll');
var $target = $(target);
//Animate the scroll to, include easing lib if you want more fancypants easings
$('html, body')
.stop()
.animate(
{
scrollTop: $target.offset().top - offset,
},
800,
'swing',
);
});
//jQuery
//jQuery('a[data-scroll]').click(function (e) {
// e.preventDefault();
// // Set Offset Distance from top to account for fixed nav
// var offset = 10;
// var target = '#' + jQuery(this).data('scroll');
// var $target = jQuery(target);
// // Animate the scroll to, include easing lib if you want more fancypants easings
// jQuery('html, body')
// .stop()
// .animate(
// {
// scrollTop: $target.offset().top - offset,
// },
// 800,
// 'swing',
// );
// });
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter