随笔分类 -  javascript

前端固定table表头方法之css和js结合实现
摘要:由于我的页面比较复杂就不贴完整代码了,这里就讲大概思路 先设置css /** 隐藏滚动条 */ ::-webkit-scrollbar { width: 8px; background-color: transparent; } table tbody { display: block; width 阅读全文
posted @ 2020-03-27 19:00 _时光悠悠 阅读(448) 评论(0) 推荐(0)
前端固定table表头方法之纯css实现
摘要:这是在网上找到的方法,拷到自己的html打开就能看到效果了: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi 阅读全文
posted @ 2020-03-27 18:49 _时光悠悠 阅读(1898) 评论(0) 推荐(0)
滑动弹窗
摘要:1. 设置要显示弹窗的元素为隐藏: display: none; 比如我的是:.hidden-pop{display: none;} 2. 设置出发动作,我的是 $(".pop-tips") 鼠标经过事件: $(".pop-tips").hover(function () { // 向下滑动显示 $ 阅读全文
posted @ 2020-03-27 18:41 _时光悠悠 阅读(255) 评论(0) 推荐(0)