我必须设置特定标签的渐变颜色。它包含从第一个标签到最后一个标签的渐变颜色。如何设置它。 为此,我使用了以下代码
$(function() {
$( "#tabs" ).tabs();
$('.gradient_me').each( function(index) {
var color = 255-index*75;
$(this).css('background', 'rgb('+color+', 0, 0)');
});
});
但问题是一个标签只包含一种颜色。我想要从第一个标签到最后一个标签的渐变颜色。我该怎么做?
答案 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 +')');
});
});