Коли ви прокручуєте сторінку з довгою таблицею, як правило, заголовок таблиці прокручується і стає марним. Цей код клонує заголовок таблиці та застосовує його у верхній частині сторінки, як тільки ви прокручуєте його, і зникає, коли прокручуєте таблицю.
Сьогодні вам, мабуть, краще використовувати, position: sticky;
ніж використовувати JavaScript, але вам доведеться самостійно зателефонувати до служби підтримки браузера.
function UpdateTableHeaders() ( $("div.divTableWithFloatingHeader").each(function() ( offset = $(this).offset(); scrollTop = $(window).scrollTop(); if ((scrollTop > offset.top) && (scrollTop < offset.top + $(this).height())) ( $(".tableFloatingHeader", this).css("visibility", "visible"); $(".tableFloatingHeader", this).css("top", Math.min(scrollTop - offset.top, $(this).height() - $(".tableFloatingHeader", this).height()) + "px"); ) else ( $(".tableFloatingHeader", this).css("visibility", "hidden"); $(".tableFloatingHeader", this).css("top", "0px"); ) )) ) $(document).ready(function() ( $("table.tableWithFloatingHeader").each(function() ( $(this).wrap(" "); $("tr:first", this).before($("tr:first", this).clone()); clonedHeaderRow = $("tr:first", this) clonedHeaderRow.addClass("tableFloatingHeader"); clonedHeaderRow.css("position", "absolute"); clonedHeaderRow.css("top", "0px"); clonedHeaderRow.css("left", "0px"); clonedHeaderRow.css("visibility", "hidden"); )); UpdateTableHeaders(); $(window).scroll(UpdateTableHeaders); ));
Дивіться Pen
OLD jQuery Technique: Persistent Headers від Chris Coyier (@chriscoyier)
на CodePen.