$(document).on('click', 'a[href^="#"]', function(e) {
var pathname = window.location.href.split('#')[0];
var $this = $(this),
link = $this.attr('href');
$this.attr('href', pathname + link);
var id = $(this).attr('href');
// target element
var $link = $(link);
if ($link.length === 0) {
return;
}
e.preventDefault();
var pos = $link.offset().top;
$('html, body').stop().animate({
scrollTop: pos
}, {
duration: 1000,
specialEasing: {
width: "linear",
height: "easeInOutCubic"
}
});
});
/*-------------------------------------
Masonry portfolio
—-----------------------------------*/
var $container = $(".masonry-portfolio");
$container.masonry({
columnWidth: ".masonry-item-pr",
itemSelector: ".masonry-item-pr"
});
$container.imagesLoaded(function () {
$container.masonry('layout');
});