我已经考虑了以下内容,所以现在我想知道您的意见,可能的解决方案等等。
我正在寻找一种插件或技术来更改文本的颜色,或者根据其父级背景图像或-color覆盖像素的平均亮度在预定义的图像/图标之间切换。
如果背景覆盖的区域很暗,请将文本设置为白色或切换图标。
此外,如果脚本会注意到父级没有定义的background-color或-image,然后继续搜索最接近的值(从父元素到其父元素),那将是很好的选择。
您对此想法有什么看法?已经有类似的东西了吗?脚本示例?
干杯J.
我已经考虑了以下内容,所以现在我想知道您的意见,可能的解决方案等等。
我正在寻找一种插件或技术来更改文本的颜色,或者根据其父级背景图像或-color覆盖像素的平均亮度在预定义的图像/图标之间切换。
如果背景覆盖的区域很暗,请将文本设置为白色或切换图标。
此外,如果脚本会注意到父级没有定义的background-color或-image,然后继续搜索最接近的值(从父元素到其父元素),那将是很好的选择。
您对此想法有什么看法?已经有类似的东西了吗?脚本示例?
干杯J.
Answers:
有趣的资源:
这是W3C算法(也带有JSFiddle演示):
const rgb = [255, 0, 0];
// Randomly change to showcase updates
setInterval(setContrast, 1000);
function setContrast() {
// Randomly update colours
rgb[0] = Math.round(Math.random() * 255);
rgb[1] = Math.round(Math.random() * 255);
rgb[2] = Math.round(Math.random() * 255);
// http://www.w3.org/TR/AERT#color-contrast
const brightness = Math.round(((parseInt(rgb[0]) * 299) +
(parseInt(rgb[1]) * 587) +
(parseInt(rgb[2]) * 114)) / 1000);
const textColour = (brightness > 125) ? 'black' : 'white';
const backgroundColour = 'rgb(' + rgb[0] + ',' + rgb[1] + ',' + rgb[2] + ')';
$('#bg').css('color', textColour);
$('#bg').css('background-color', backgroundColour);
}
#bg {
width: 200px;
height: 50px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="bg">Text Example</div>
您可能会对这篇关于24种计算颜色对比度的方法的文章感兴趣。忽略第一组函数,因为它们是错误的,但是YIQ公式将帮助您确定是否使用浅色或深色前景色。
一旦获得元素(或祖先)的背景色,就可以使用本文中的此功能来确定合适的前景色:
function getContrastYIQ(hexcolor){
hexcolor = hexcolor.replace("#", "");
var r = parseInt(hexcolor.substr(0,2),16);
var g = parseInt(hexcolor.substr(2,2),16);
var b = parseInt(hexcolor.substr(4,2),16);
var yiq = ((r*299)+(g*587)+(b*114))/1000;
return (yiq >= 128) ? 'black' : 'white';
}
const getContrastYIQ = hc => { const [r, g, b] = [0, 2, 4].map( p => parseInt( hc.substr( p, 2 ), 16 ) ); return ((r * 299) + (g * 587) + (b * 114)) / 1000 >= 128; }
有趣的问题。我立即想到的是将背景颜色转换为文本。这包括简单地解析背景并反转其RGB值。
这样的事情:http : //jsfiddle.net/2VTnZ/2/
var rgb = $('#test').css('backgroundColor');
var colors = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
var brightness = 1;
var r = colors[1];
var g = colors[2];
var b = colors[3];
var ir = Math.floor((255-r)*brightness);
var ig = Math.floor((255-g)*brightness);
var ib = Math.floor((255-b)*brightness);
$('#test').css('color', 'rgb('+ir+','+ig+','+ib+')');
#808080
!怎么办?
mix-blend-mode
绝招:
header {
overflow: hidden;
height: 100vh;
background: url(https://www.w3schools.com/html/pic_mountain.jpg) 50%/cover;
}
h2 {
color: white;
font: 900 35vmin/50vh arial;
text-align: center;
mix-blend-mode: difference;
filter: drop-shadow(0.05em 0.05em orange);
}
<header>
<h2 contentEditable role='textbox' aria-multiline='true' >Edit me here</h2>
</header>
添加(2018年3月):以下是一个不错的教程,解释了所有不同类型的模式/实现:https : //css-tricks.com/css-techniques-and-effects-for-knockout-text/
我发现BackgroundCheck脚本非常有用。
它检测背景的总体亮度(可以是背景图像还是彩色),并根据背景的亮度将一个类应用于所分配的文本元素(background--light
或background--dark
)。
它可以应用于静止和运动元素。
(来源)
如果您使用的是ES6,请将十六进制转换为RGB,然后可以使用以下方法:
const hexToRgb = hex => {
// turn hex val to RGB
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)
return result
? {
r: parseInt(result[1], 16),
g: parseInt(result[2], 16),
b: parseInt(result[3], 16)
}
: null
}
// calc to work out if it will match on black or white better
const setContrast = rgb =>
(rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000 > 125 ? 'black' : 'white'
const getCorrectColor = setContrast(hexToRgb(#ffffff))
这是我的尝试:
(function ($) {
$.fn.contrastingText = function () {
var el = this,
transparent;
transparent = function (c) {
var m = c.match(/[0-9]+/g);
if (m !== null) {
return !!m[3];
}
else return false;
};
while (transparent(el.css('background-color'))) {
el = el.parent();
}
var parts = el.css('background-color').match(/[0-9]+/g);
this.lightBackground = !!Math.round(
(
parseInt(parts[0], 10) + // red
parseInt(parts[1], 10) + // green
parseInt(parts[2], 10) // blue
) / 765 // 255 * 3, so that we avg, then normalize to 1
);
if (this.lightBackground) {
this.css('color', 'black');
} else {
this.css('color', 'white');
}
return this;
};
}(jQuery));
然后使用它:
var t = $('#my-el');
t.contrastingText();
这将立即使文本变为适当的黑色或白色。要执行图标:
if (t.lightBackground) {
iconSuffix = 'black';
} else {
iconSuffix = 'white';
}
然后每个图标可能看起来像'save' + iconSuffix + '.jpg'
。
请注意,这在任何容器溢出其父容器的情况下都不会起作用(例如,如果CSS高度为0,并且没有隐藏溢出)。要使该工作更加复杂。
通过结合答案[@ alex-ball,@jeremyharris],我发现这是最适合我的方法:
$('.elzahaby-bg').each(function () {
var rgb = $(this).css('backgroundColor');
var colors = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
var r = colors[1];
var g = colors[2];
var b = colors[3];
var o = Math.round(((parseInt(r) * 299) + (parseInt(g) * 587) + (parseInt(b) * 114)) /1000);
if(o > 125) {
$(this).css('color', 'black');
}else{
$(this).css('color', 'white');
}
});
*{
padding: 9px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.0/jquery.min.js"></script>
<div class='elzahaby-bg' style='background-color:#000'>color is white</div>
<div class='elzahaby-bg' style='background-color:#fff'>color is black</div>
<div class='elzahaby-bg' style='background-color:yellow'>color is black</div>
<div class='elzahaby-bg' style='background-color:red'>color is white</div>