如何为标签设置渐变颜色?

时间:2013-04-29 05:24:44

标签: javascript jquery html css3

我必须设置特定标签的渐变颜色。它包含从第一个标签到最后一个标签的渐变颜色。如何设置它。 为此,我使用了以下代码

  $(function() {
    $( "#tabs" ).tabs();

      $('.gradient_me').each( function(index) {
          var color = 255-index*75;
          $(this).css('background', 'rgb('+color+', 0, 0)');
      });
  });

但问题是一个标签只包含一种颜色。我想要从第一个标签到最后一个标签的渐变颜色。我该怎么做?

1 个答案:

答案 0 :(得分:2)

容易!

您只需要一个线性渐变CSS规则。

  $(function() {
    $( "#tabs" ).tabs();

      $('.gradient_me').each( function(index) {
          var color = 'rgb(' + (255-index*75) + ', 0, 0)';
          var color2 = 'rgb(' + (255-index*75 - 75) + ', 0, 0)';
          $(this).css('background', '-moz-linear-gradient(left, '+color+', ' + color2 +')');
          $(this).css('background', '-webkit-linear-gradient(left, '+color+', ' + color2 +')');
          $(this).css('background', '-ms-linear-gradient(left, '+color+', ' + color2 +')');
          $(this).css('background', '-o-linear-gradient(left, '+color+', ' + color2 +')');
          $(this).css('background', 'linear-gradient(left, '+color+', ' + color2 +')');

      });
  });

演示:http://jsfiddle.net/5zfyU/8/