CSS3 线性渐变条带
CSS3 linear gradient banding
我试过像这个一样创建渐变颜色变化的横幅
site 但似乎 运行 陷入严重的色带问题。谁能告诉我在不使用 canvas 元素的情况下是否可以在该网站上实现颜色变化效果?
抱歉,我是新手。
欢迎任何反馈。
这个 fiddle 在 Firefox 中必须是 运行。抱歉。
#solid {
position: absolute;
width: 100%;
height: 380px;
background: -webkit-linear-gradient(top left, rgb(105, 80, 102), #2E8ECE);
background: -o-linear-gradient(top left, rgb(105, 80, 102), #2E8ECE);
background: linear-gradient(to bottom right, rgb(105, 80, 102), #2E8ECE);
}
您可以使用 linear-gradient
背景图片和 JavaScript 来实现,就像下面的代码片段一样。只需要通过JSsetInterval
方法不断改变渐变的rgb()
颜色值即可
注意: 编码完成后 rgb()
值达到某个阈值后,它们会立即返回到原始状态。您还可以修改代码,使其递增直到达到某个水平,然后递减,使其在高阈值和低阈值之间振荡。
var el = document.querySelector('.gradient-div');
/* Set the initial rgb() color values for the start and end colors */
var startColorRed = 62,
startColorGreen = 79,
startColorBlue = 216,
endColorRed = 251,
endColorGreen = 38,
endColorBlue = 103;
/* set the original gradient as the element's background image */
el.style.backgroundImage = 'linear-gradient(90deg, rgb(' + startColorRed + ', ' + startColorGreen + ', ' + startColorBlue + ') 10% , rgb(' + endColorRed + ', ' + endColorGreen + ', ' + endColorBlue + ') 90%)';
/* function to change the gradient's colors */
function changeGrad() {
/* do whatever math operation that is required on the rgb values of the color */
if (endColorRed >= 151) endColorRed--;
else endColorRed = 251;
if (startColorBlue >= 116) startColorBlue--;
else startColorBlue = 216;
if (endColorBlue <= 203) endColorBlue++;
else endColorBlue = 103;
if (startColorGreen <= 179) startColorGreen++;
else startColorGreen = 79;
if (endColorGreen <= 138) endColorGreen++;
else endColorGreen = 38;
el.style.backgroundImage = 'linear-gradient(90deg, rgb(' + startColorRed + ', ' + startColorGreen + ', ' + startColorBlue + ') 10% , rgb(' + endColorRed + ', ' + endColorGreen + ', ' + endColorBlue + ') 90%)';
}
/* Call the changeGrad function at regular intervals to change the gradient's colors */
window.setInterval(changeGrad, 500);
div {
height: 200px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<div class='gradient-div'></div>
我试过像这个一样创建渐变颜色变化的横幅 site 但似乎 运行 陷入严重的色带问题。谁能告诉我在不使用 canvas 元素的情况下是否可以在该网站上实现颜色变化效果?
抱歉,我是新手。
欢迎任何反馈。
这个 fiddle 在 Firefox 中必须是 运行。抱歉。
#solid {
position: absolute;
width: 100%;
height: 380px;
background: -webkit-linear-gradient(top left, rgb(105, 80, 102), #2E8ECE);
background: -o-linear-gradient(top left, rgb(105, 80, 102), #2E8ECE);
background: linear-gradient(to bottom right, rgb(105, 80, 102), #2E8ECE);
}
您可以使用 linear-gradient
背景图片和 JavaScript 来实现,就像下面的代码片段一样。只需要通过JSsetInterval
方法不断改变渐变的rgb()
颜色值即可
注意: 编码完成后 rgb()
值达到某个阈值后,它们会立即返回到原始状态。您还可以修改代码,使其递增直到达到某个水平,然后递减,使其在高阈值和低阈值之间振荡。
var el = document.querySelector('.gradient-div');
/* Set the initial rgb() color values for the start and end colors */
var startColorRed = 62,
startColorGreen = 79,
startColorBlue = 216,
endColorRed = 251,
endColorGreen = 38,
endColorBlue = 103;
/* set the original gradient as the element's background image */
el.style.backgroundImage = 'linear-gradient(90deg, rgb(' + startColorRed + ', ' + startColorGreen + ', ' + startColorBlue + ') 10% , rgb(' + endColorRed + ', ' + endColorGreen + ', ' + endColorBlue + ') 90%)';
/* function to change the gradient's colors */
function changeGrad() {
/* do whatever math operation that is required on the rgb values of the color */
if (endColorRed >= 151) endColorRed--;
else endColorRed = 251;
if (startColorBlue >= 116) startColorBlue--;
else startColorBlue = 216;
if (endColorBlue <= 203) endColorBlue++;
else endColorBlue = 103;
if (startColorGreen <= 179) startColorGreen++;
else startColorGreen = 79;
if (endColorGreen <= 138) endColorGreen++;
else endColorGreen = 38;
el.style.backgroundImage = 'linear-gradient(90deg, rgb(' + startColorRed + ', ' + startColorGreen + ', ' + startColorBlue + ') 10% , rgb(' + endColorRed + ', ' + endColorGreen + ', ' + endColorBlue + ') 90%)';
}
/* Call the changeGrad function at regular intervals to change the gradient's colors */
window.setInterval(changeGrad, 500);
div {
height: 200px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<div class='gradient-div'></div>