frozen css 复制,html - CSS to create frozen row and column headers in table within overflow div? - Sta...

I've not found pure html/css solution that does the following:

uses tables semantically

fixes both header and column

works with variable width columns

works with vertical and horizontal scrolling

Here's something I hacked together that does work

The thing I don't like about it is that the content in the header th elements is duplicated. I think with a little additional hacking this could be fixed.

In the spirit of putting code in the answer, here's the code:

html:

1
2
header 1
header 1
header 2
header 2
header 3
header 3
header 4
header 4
header 5
header 5
header 6
header 6
header 7
header 7
header 8
header 8
header 9
header 9
header 10
header 10
header 11
header 11
header 12
header 12
header 13
header 13
header 14
header 14
header 15
header 15
header 16
header 16
header 17
header 17
header 18
header 18
header 19
header 19
header 20
header 20
hello 1helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 2helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 3helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 4helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 5helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 6helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 7helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20hello 8helloworld 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20

css:

td, th {

padding: 5px;

white-space: nowrap;

}

td {

background: linear-gradient(135deg, white 0%, #a80077 99%, black 100%);

}

th {

height: 0;

font-weight: normal;

}

.scrollx {

max-width: 100%;

overflow-x: scroll;

}

.scrolly {

position: relative;

max-height: 150px;

overflow-y: scroll;

margin-bottom: 20px;

}

table {

border-collapse: collapse;

min-width: 100%;

}

table td.fill,

table th.fill {

width: 100%;

min-width: 0;

background: white;

padding: 0;

}

tr {

position: relative;

}

.sticky {

text-decoration: underline;

font-weight: 700;

}

.stuck {

position: absolute;

}

thead th {

position: relative;

}

thead th div {

padding: 5px;

background: linear-gradient(135deg, black 0%, #a80077 99%, white 100%);

color: #ffffff;

position: absolute;

z-index: 2;

top: 0;

left: 0;

right: 0;

}

js:

$(function() {

$("#status").text('loaded');

$("table").each(function(index, table) {

var firstRow = $($(table).find('tr')[0]);

var offset = 0;

var stickies = firstRow.find('.sticky');

firstRow.children().each(function(index, td) {

var width = $(td).width();

$(table).find('tr td:nth-of-type('+(index+1)+')').css({width: width + 'px'});

$(table).find('tr th:nth-of-type('+(index+1)+')').css({width: width + 'px'});

});

stickies.each(function(index, td) {

var column = $(table).find('tr .sticky:nth-of-type('+(index+1)+')');

column.css({left: offset+'px'});

column.addClass('stuck');

offset += $(td).width() + 10;

});

$(table).parent().css({"margin-left": offset+'px'});

$(table).parent().parent().scroll(function(e) {

var top = e.currentTarget.scrollTop;

$(table).find('thead tr th div').css({top:top+'px'});

});

});

});

So, what's this doing?

it's using absolute positioning on the fixed (or "sticky") columns to keep the stuck on the left. To support variable widths, it's calculating the width before setting the position to absolute. Then a margin is applied to the left of the table container to compensate for the absolutely positioned columns.

For fixing the header, it's absolutely positioning the nested divs on the th elements, and then adjusting their "top" css property whenever the table is scrolled. Why the duplicated content? It's there so that the column width correctly takes into account the width of the header content.

This is a pretty rough implementation - the jquery code here is meant to be a proof of concept.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
辽B代驾管理系统对代驾订单管理、用户咨询管理、代驾订单评价管理、代驾订单投诉管理、字典管理、论坛管理、公告管理、新闻信息管理、司机管理、用户管理、管理员管理等进行集中化处理。经过前面自己查阅的网络知识,加上自己在学校课堂上学习的知识,决定开发系统选择小程序模式这种高效率的模式完成系统功能开发。这种模式让操作员基于浏览器的方式进行网站访问,采用的主流的Java语言这种面向对象的语言进行辽B代驾管理系统程序的开发,在数据库的选择上面,选择功能强大的Mysql数据库进行数据的存放操作。辽B代驾管理系统的开发让用户查看代驾订单信息变得容易,让管理员高效管理代驾订单信息。 辽B代驾管理系统具有管理员角色,用户角色,这几个操作权限。 辽B代驾管理系统针对管理员设置的功能有:添加并管理各种类型信息,管理用户账户信息,管理代驾订单信息,管理公告信息等内容。 辽B代驾管理系统针对用户设置的功能有:查看并修改个人信息,查看代驾订单信息,查看公告信息等内容。 辽B代驾管理系统针对管理员设置的功能有:添加并管理各种类型信息,管理用户账户信息,管理代驾订单信息,管理公告信息等内容。 辽B代驾管理系统针对用户设置的功能有:查看并修改个人信息,查看代驾订单信息,查看公告信息等内容。 系统登录功能是程序必不可少的功能,在登录页面必填的数据有两项,一项就是账号,另一项数据就是密码,当管理员正确填写并提交这二者数据之后,管理员就可以进入系统后台功能操作区。项目管理页面提供的功能操作有:查看代驾订单,删除代驾订单操作,新增代驾订单操作,修改代驾订单操作。公告信息管理页面提供的功能操作有:新增公告,修改公告,删除公告操作。公告类型管理页面显示所有公告类型,在此页面既可以让管理员添加新的公告信息类型,也能对已有的公告类型信息执行编辑更新,失效的公告类型信息也能让管理员快速删除。新闻管理页面,此页面提供给管理员的功能有:新增新闻,修改新闻,删除新闻。新闻类型管理页面,此页面提供给管理员的功能有:新增新闻类型,修改新闻类型,删除新闻类型。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值