English 中文(简体)
为什么在将亮度(1.5) cs过滤到一个rg(255,0,0)四时显示“right”吗?
原标题:Why is Chrome displaying a "brighter" red when applying a brightness(1.5) css filter to a rgb(255, 0, 0) div?
问题回答

这将取决于你监测的肤色。 当然,你具有广泛的加权(P3或两者),这确实使数值高于1.0。

这还不是偶然的。 Chrome只是把事情推向这里,但你可能不应指望彩色的渠道仅限于欧洲复兴开发银行的<代码>1.0/>>。 color(功能允许我们确定更高的范围:

<div style="width:200px; height:200px; background-color: rgb(255,0,0);">My guess</div>
<div style="width:200px; height:200px; background-color: rgb(255,0,0); filter:brightness(1.5)">Actual</div>
<div style="width:200px; height:200px; background-color: color(srgb 1.5 0 0);">color(srgb 1.5 0 0) </div>

https://github.com/w3c/csswg- drafts/issues/7100" conf=“noestlow noreferer”>,该讨论内容为:

WebKit确实在显示的彩色空间进行堆肥。

https://github.com/w3c/cswg-drafts/issues/7100#issuecomment-1104166869“rel=“nofollow noreferer”

Chrome在显示物色空间进行堆肥。 我们还在显示的彩色空间进行消化。

有一些例外。 如果显示的彩色空间太远,与欧洲复兴开发银行类似联动的异构体(例如,有线性或PQ转移功能),那么我们就在扩展的欧洲复兴开发银行中进行复合和分类,并做最后的装饰转换成线性或PQ。

我们确切地量化了“远不象欧洲移民团体那样的干预行为”的含义(你可以在此审查目前的逻辑)。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jQuery block moving

I wanna move a div block to the top, so I coded like this: CSS part: .movingPart{ margin-top:80px; } jQuery part: $(document).ready(function() { $( #btn ).click(function() { $( .movingPart )....

Private FireFox plugin

I m looking at getting a FireFox plugin developed - but is it possible to create a plugin that is for private use only, so only those I share it with have it and not open to the masses? Need this for ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Cross-browser development

I m developing a web application for a new service, starting from Firefox 3.5. The interface design is tableless, only using divs + CSS & performance-blessed practices. Now, while being ...

Cross browser way of setting IFrame to "about:blank"?

Does anybody know a proper, cross-browser way to "empty" an IFrame? Is "about:blank" recognized without error across all browsers? Is it valid to give an IFrame an empty src?