Files
cv/assets/js/main.js
2025-12-11 13:08:57 +01:00

18 lines
421 B
JavaScript

jQuery(document).ready(function($) {
var mastheadheight = $('.ds-header').outerHeight();
//console.log(mastheadheight);
$(".ds-banner,.ds-main-section").css("margin-top" , mastheadheight);
$(window).scroll(function(){
if ($(window).scrollTop() >= 10) {
$('.ds-header').addClass('ds-fixed-header');
}
else {
$('.ds-header').removeClass('ds-fixed-header');
}
}).scroll();
});