jquery实现表格checkbox单选多选变色效果代码

代码语言:html

所属分类:表格

代码描述:jquery实现表格checkbox单选多选变色效果代码

代码标签: checkbox 单选 多选 变色 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">


  
  <style>
    * { margin: 0; padding: 0; }
    body { font-family: 'Microsoft Yahei'; font-size: 18px; background-color: #f8f8f8; }

    #table {
      width: 1200px;
      margin: 40px auto 0;
      border-collapse: collapse;
      background-color: #fff;
    }
    #table td,
    #table th {
      padding: 0.75em 1.5em;
    }
    #table thead {
      color: #fff;
      background-color: #31bc86;
    }
    #table thead th {
      text-align: left;
    }
    #table tbody {}
    #table tbody tr {
      border-bottom: 2px dashed #000;
      cursor: default;
      transition: all .125s ease-in-out;
    }
    #table tbody tr:hover {
      /*background-color: rgba(129,208,177,.3);*/
    }
    #table tbody tr.event-bgColor {
      background-color: rgba(255, 192, 203, .2);
    }
    #table tbody tr.default-bgColor {
      background-color: #fff;
    }
    #table tbody tr.hover-bgColor {
      background-color: rgba(255, 192, 203, .8);
    }
    #table tbody tr.selected-bgColor {
      background-color: rgb(255, 192, 203);
    }
    input {
      width: 16px;
      height: 16px;
    }
    #selectAll {
      margin-left: -4px;
    }
    .checkbox {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
    .........完整代码请登录后点击上方下载按钮下载查看

网友评论0