engelsystem/resources/assets/js/sticky-headers.js

33 lines
895 B
JavaScript
Raw Normal View History

/**
* Enables the fixed headers and time lane for the shift-calendar and datatables
*/
$(function () {
2022-11-26 14:50:59 +01:00
if ($('.shift-calendar').length) {
const timeLanes = $('.shift-calendar .time');
const headers = $('.shift-calendar .header');
const topReference = $('.container-fluid .row');
timeLanes.css({
'position': 'relative',
'z-index': 999
});
headers.css({
'position': 'relative',
'z-index': 900
});
$(window).scroll(
function () {
const top = headers.parent().offset().top;
const left = 15;
timeLanes.css({
2022-11-26 14:50:59 +01:00
'left': Math.max(0, $(window).scrollLeft() - left) + 'px'
});
headers.css({
2022-11-26 14:50:59 +01:00
'top': Math.max(0, $(window).scrollTop() - top
2021-09-11 10:46:21 +02:00
- 13
2017-01-02 15:43:36 +01:00
+ topReference.offset().top)
+ 'px'
2022-11-26 14:50:59 +01:00
});
});
}
2017-01-02 15:43:36 +01:00
});