当前位置:   article > 正文

el-table鼠标移入变色、el-table排名样式变化_el-table鼠标移动上去变色

el-table鼠标移动上去变色

背景颜色实现效果:
在这里插入图片描述

  1. ::v-deep .el-table .el-table__body tr td:hover{
  2. background-color: #d4b021 !important;
  3. }

边框实现效果:

  1. ::v-deep .el-table .el-table__body tr td {
  2. border: 2px solid transparent !important;
  3. }
  4. ::v-deep .el-table .el-table__body tr td:hover {
  5. border: 2px solid red !important;
  6. }

鼠标移入更换整行的背景颜色,实现效果:
在这里插入图片描述

  1. ::v-deep .el-table--enable-row-hover .el-table__body tr:hover > td {
  2. background-color: #212e3e !important;
  3. }

二、el-table排名样式变化(前几名有不同背景或不一样的样式。) 

  1. <el-table-column
  2. type="index"
  3. label="排名"
  4. width="50"
  5. style="margin-left:50px;white-space: nowrap;">
  6. <template scope="scope" >
  7. <span class="index_common" :text="scope.$index + 1" :class="[scope.$index + 1 == '1' ? 'index_one' : scope.$index + 1 == '2' ? 'index_two' : scope.$index + 1 == '3' ? 'index_three' : 'index_other']">
  8. {{ scope.$index + 1 }}
  9. </span>
  10. </template>
  11. </el-table-column>
  12. //不同样式:
  13. <style>
  14. .index_one{
  15. display: inline-block;
  16. line-height: 40px;
  17. width: 40px;
  18. height: 38px;
  19. background: #E8512E;
  20. opacity: 0.8;
  21. font-size: 24px;
  22. font-family: Myriad Pro;
  23. color:#ffffff
  24. // margin-left: -40px;
  25. }
  26. .index_two{
  27. width: 40px;
  28. height: 38px;
  29. display: inline-block;
  30. line-height: 40px;
  31. background: #FFC000;
  32. opacity: 0.8;
  33. font-size: 24px;
  34. font-family: Myriad Pro;
  35. color:#ffffff
  36. // margin-left: -40px;
  37. }
  38. .index_three{
  39. width: 40px;
  40. height: 38px;
  41. display: inline-block;
  42. line-height: 40px;
  43. background: #00C0FF;
  44. opacity: 0.8;
  45. font-size: 24px;
  46. font-family: Myriad Pro;
  47. color:#ffffff
  48. // margin-left: -40px;
  49. }
  50. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/113731
推荐阅读
相关标签
  

闽ICP备14008679号