我桌子上的一些细胞有背景颜色。表格的行颜色是交替的。我在表格行中创建了一个悬停。当鼠标在一行上时,它会悬停,并且一些彩色单元格的所有背景颜色都是不可见的。当鼠标指针悬停在行上时,如何悬停但仍保留单元格的背景颜色。我的悬停和替代颜色代码:
CSS:
Source.fromFile("some_file").getLines().toList.filterNot(_.isEmpty)
.zipWithIndex
.foldLeft(Map(0 -> List.empty[String], 1 -> List.empty[String], 2 -> List.empty[String])) { (result, current) =>
result.updated(current._2 % 3, result(current._2 % 3) ++ List(current._1))
}
JQuery的:
tr:hover td,
tr.even:hover td.active,
tr.odd:hover td.active {
background-color: #EBEBEB ;
}
答案 0 :(得分:0)
你可以用普通的CSS进行。
PrintCoordinates