13

我有一个包含两列的基本表:名称和值。我想根据值的大小为表格中的每一行加上适当的宽度百分比(基本上是创建一个横向直方图!)。我可以编写代码来计算要设置的适当百分比,但我无法计算出 CSS 以适当地对每一行进行实际着色。似乎整行都可以着色,但不是百分比。真的吗?

对于它的价值,我正在使用 Twitter Bootstrap,如果需要,我也可以使用 jQuery。这仅在 Chrome 上运行,因此仅 CSS3 和 Webkit 就可以了!这是HTML:

<table class="table">
  <tbody class="lead">              
    <tr> 
      <td>
        Joe
      </td>
      <td>
        10
      </td>
    </tr>              
    <tr> 
      <td>
        Jane
      </td>
      <td>
        20 
      </td>
    </tr>              
    <tr> 
      <td>
        Jim
      </td>
      <td>
        2
      </td>
    </tr>
  </tbody>
</table>

关于如何实现这一点的任何提示?希望这个问题有意义。

4

2 回答 2

28

你可以使用线性渐变。

如果百分比为 40%:

table{
    background: -webkit-gradient(linear, left top, right top, color-stop(40%,#F00), color-stop(40%,#00F));
    background: -moz-linear-gradient(left center, #F00 40%, #00F 40%);
    background: -o-linear-gradient(left, #F00 40%, #00F 40%);
    background: linear-gradient(to right, #F00 40%, #00F 40%);
}

演示

所以,在 JavaScript 中,

var percentage=40,
    col1="#F00",
    col2="#00F";
var t=document.getElementById('table');
t.style.background = "-webkit-gradient(linear, left top,right top, color-stop("+percentage+"%,"+col1+"), color-stop("+percentage+"%,"+col2+"))";
t.style.background = "-moz-linear-gradient(left center,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)";
t.style.background = "-o-linear-gradient(left,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)";
t.style.background = "linear-gradient(to right,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)";

演示


如果您想以不同的方式将其应用于每一行:

var col1="#F00",
    col2="#00F";
var els=document.getElementById('table').getElementsByTagName('tr');
for (var i=0; i<els.length; i++) {
    var percentage = Number(els[i].getElementsByTagName('td')[1].firstChild.nodeValue);
    els[i].style.background = "-webkit-gradient(linear, left top,right top, color-stop("+percentage+"%,"+col1+"), color-stop("+percentage+"%,"+col2+"))";
    els[i].style.background = "-moz-linear-gradient(left center,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)" ;
    els[i].style.background = "-o-linear-gradient(left,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)";
    els[i].style.background = "linear-gradient(to right,"+col1+" "+percentage+"%, "+col2+" "+percentage+"%)" ;
}

问题是tr在 Firefox 和 Opera 上设置背景效果很好,但在 Chrome 上,渐变应用于每个单元格。

添加此代码可以解决此问题(请参阅https://stackoverflow.com/a/10515894):

#table td {display: inline-block;}

演示

于 2012-08-18T18:42:19.377 回答
12

无需使用渐变。首先,创建一个简单的图像文件,使用您想要为行着色的颜色。就我而言,我创建了一个.png全黑色(black.png在下面的示例中)。现在,只需使用background-imagebackground-size属性为行的适当部分着色。

示例,HTML:

<table cellspacing = "0px">
    <tr class = "row"><td>Hello Hello</td><td>Bye Bye</td></tr>
</table>

CSS:

.row {
    background-color: white; /*fallback color*/
    background-image: url(black.png);
    background-size: 75% 100%; /*your percentage is the first one (width), second one (100%) is for height*/
    background-repeat: no-repeat;
    color: rgb(0, 140, 200);
    font-weight: bold;
}

结果:

结果

这是一个关于如何为您的示例自动执行此操作的简单片段:

var tbl = document.getElementsByClassName("table")[0];
var rws = tbl.rows;
for(var i = 0; i < rws.length; i ++) {
    var percentage = parseInt(rws[i].getElementsByTagName("td")[1].innerHTML, 10);
    rws[i].style.backgroundImage = "black.png";
    rws[i].style.backgroundSize = percentage + "%" + " 100%";
    rws[i].style.backgroundRepeat = "no-repeat";
    rws[i].style.color = "rgb(0, 140, 200)";
}

小演示:百分比宽度 bg 颜色(基于非渐变)

我希望这有帮助!

于 2012-08-18T19:37:16.283 回答