Timetables插件实现时间课表效果代码
代码语言:html
所属分类:图表
代码描述:Timetables插件实现时间课表效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/Timetables.min.js"></script> <style> #coursesTable { padding: 15px 10px; } .Courses-head { background-color: #edffff; } .Courses-head > div { text-align: center; font-size: 14px; line-height: 28px; } .left-hand-TextDom, .Courses-head { background-color: #f2f6f7; } .Courses-leftHand { background-color: #f2f6f7; font-size: 12px; } .Courses-leftHand .left-hand-index { color: #9c9c9c; margin-bottom: 4px !important; } .Courses-leftHand .left-hand-name { color: #666; } .Courses-leftHand p { text-align: center; font-weight: 900; } .Courses-head > div { border-left: none !important; } .Courses-leftHand > div { padding-top: 5px; border-bottom: 1px dashed rgb(219, 219, 219); } .Courses-leftHand > div:last-child { border-bottom: none !important; } .left-hand-TextDom, .Courses-head { border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; } .Courses-content > ul { border-bottom: 1px dashed rgb(219, 219, 219); box-sizing: border-box; } .Courses-content > ul:last-child { border-bottom: none !important; } .highlight-week { color: #02a9f5 !important; } .Courses-content li { text-align: center; color: #666666; font-size: 14px; line-height: 50px; } .Courses-content li span { padding: 6px 2px; box-sizing: border-box; line-height: 18px; border-radius: 4px; white-space: normal; word-break: break-all; cursor: pointer; } .grid-active { z-index: 9999; } .grid-active span { box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); } </style> </head> <body> <div id="coursesTable"></div> <button onclick="onChange()" style="background-color: #00a2ae; color: #fff; padding: 5px 10px; border-radius: 4px;border: none"> 切换课表 </button> <script> var courseList = [ ['大学英语(Ⅳ)@10203', '大学英语(Ⅳ)@10203', '', '', '', '', '毛概@14208', '毛概@14208', '', '', '', '选修'], ['', '', '信号与系统@11302', '信号与系统@11302', '模拟电子技术基础@16204', '模拟电子技术基础@16204', '', '', '', '', '', ''], ['大学体育(Ⅳ)', '大学体育(Ⅳ)', '形势与政策(Ⅳ)@15208', '形势与政策(Ⅳ)@15208', '', '', '电路、信号与系统实验', '电路、信号与系统实验', '', '', '', ''], ['', '', '', '', '电装实习@11301', '电装实习@11301', '', '', '', '大学体育', '大学体育', ''], ['', '', '数据结构与算法分析', .........完整代码请登录后点击上方下载按钮下载查看
网友评论0