Trwałe nagłówki na stołach - CSS-Tricks

Anonim

Kiedy przewijasz stronę z długą tabelą, zwykle nagłówek tabeli jest przewijany i staje się bezużyteczny. Ten kod klonuje nagłówek tabeli i stosuje go na górze strony po przewinięciu poza niego, a znika po przewinięciu poza tabelę.

W dzisiejszych czasach prawdopodobnie lepiej jest używać position: sticky;niż JavaScript, ale będziesz musiał samodzielnie wykonać tę rozmowę z pomocą techniczną przeglądarki.

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); ));

Zobacz Pen
OLD jQuery Technique: Persistent Headers autorstwa Chrisa Coyiera (@chriscoyier)
na CodePen.