html表格向上,实现table上下滚动

实现table上下无缝滚动

table表格无缝向上滚动

.tablebox {

height: 200px;

overflow: hidden;

position: relative;

width: 300px;

margin: 100px auto;

background-color: rgba(6,26,103,1);

}

.tbl-header {

width: 100%;

position: absolute;

top: 0;

left: 0;

z-index: 999;

}

.tbl-body {

width: 100%;

position: absolute;

top: 0;

left: 0;

}

.tablebox table {

width: 100%;

}

.tablebox table th,

.tablebox table td {

font-size: 12px;

color: #7ca6f4;

line-height: 26px;

text-align: center;

}

.tablebox table tr th {

background: #022852;

cursor: pointer;

}

.tablebox table tr td {

border-bottom: 1px solid #202e64;

}

tr td img{

width: 25px;

margin-top: 5px;

}

tr td p{

width: 60px;

height: 20px;

font-weight: bold;

border-radius: 5px;

margin: auto;

text-align: center;

line-height: 20px;

color: #000000;

}

.cf1{

background: #c20000;

}

.cf2{

background: #ee880c;

}

.cf3{

background: #f8f400;

}

头像姓名处分时间处分原因处分类型

头像姓名处分时间处分原因处分类型

张飞2020.8.30打架斗殴

开除学籍

张飞2020.8.30打架斗殴

留校查看

张飞2020.8.30打架斗殴

开除学籍

张飞2020.8.30打架斗殴

开除学籍

张飞2020.8.30打架斗殴

留校查看

张飞2020.8.30打架斗殴

开除学籍

var MyMarhq = '';

clearInterval(MyMarhq);

var item = $('.tbl-body tbody tr').length

console.log(item)

if(item> 4){

$('.tbl-body tbody').html($('.tbl-body tbody').html()+$('.tbl-body tbody').html());

$('.tbl-body').css('top', '0');

var tblTop = 0;

var speedhq = 50; // 数值越大越慢

var outerHeight = $('.tbl-body tbody').find("tr").outerHeight();

function Marqueehq(){

if(tblTop <= -outerHeight*item){

tblTop = 0;

} else {

tblTop -= 1;

}

$('.tbl-body').css('top', tblTop+'px');

}

MyMarhq = setInterval(Marqueehq,speedhq);

// 鼠标移上去取消事件

$(".tbl-body tbody").hover(function (){

clearInterval(MyMarhq);

},function (){

clearInterval(MyMarhq);

MyMarhq = setInterval(Marqueehq,speedhq);

})

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值