$(document).ready(function() {
var urlParams = new URLSearchParams(window.location.hash.replace("#","?"));
var hash = urlParams.get('hash');
var destination = $(hash).offset().top;
$('html,body').stop().animate({
scrollTop: destination - 100
}, 200);
});
<link rel="stylesheet" type="text/css" href="style.css">
'
gulp.task('scss-blocks', function () {
return gulp.src(paths.src + 'scss/blocks/*.scss')
.pipe(cached('sass'))
.pipe(dependents())
.pipe(sourcemaps.init())
.pipe(sass())
.on("error", sass.logError)
.pipe(sourcemaps.write())
.pipe(gulp.dest(function(vinyl) {
return 'blocks/' + filename;
}))
.pipe(browserSync.stream())
});