<VirtualHost *:80>
ServerName site.local
...
<!-- Верхний блок -->
<div id="pathwayFontsSubs"></div>
<div id="pathwayFonts"></div>
<!-- /Верхний блок -->
...
<!-- Нижний блок -->
<div id="fixedBottomSubs" class="fixedBottomSubs"></div>
<div id="fixedBottom" class="sticky-footer"></div>
<!-- /Нижний блок -->
#fixedBottom, .fixedBottomSubs {
height: 30px;
}
#pathwayFonts, .pathwayFontsSubs {
height: 50px;
}
$(window).scroll(function(){
if ($(window).scrollTop() > $("#logoSearch").outerHeight(true)) {
$("#pathwayFonts").addClass("sticky");
$("#pathwayFontsSubs").addClass("pathwayFontsSubs");
}
else {
$("#pathwayFonts").removeClass("sticky");
$("#pathwayFontsSubs").removeClass("pathwayFontsSubs");
}
if (($(window).scrollTop() + $(window).height()) < ($("body").height() - $("#footer").outerHeight())) {
$("#fixedBottom").addClass("sticky-footer");
$("#fixedBottomSubs").addClass("fixedBottomSubs");
}
else {
$("#fixedBottom").removeClass("sticky-footer");
$("#fixedBottomSubs").removeClass("fixedBottomSubs");
}
});
$(window).scroll(function(){
if ($(window).scrollTop() > $("#logoSearch").outerHeight(true)) {
$("#pathwayFonts").addClass("sticky");
}
else {
$("#pathwayFonts").removeClass("sticky");
}
if (($(window).scrollTop() + $(window).height()) < ($("html").height() - $("#footer").outerHeight())) {
$("#fixedBottom").addClass("sticky-footer");
}
else {
$("#fixedBottom").removeClass("sticky-footer");
}
});