Table of Contents
什么是 Blend(混合)
CSS 中的 Blend
Blend 各种模式的计算方式
normal
multiply
screen
hard-light
overlay
darken
lighten
color-dodge
color-burn
soft-light
difference
exclusion
参考资料
Home Web Front-end HTML Tutorial Compose 和 Blend(二)_html/css_WEB-ITnose

Compose 和 Blend(二)_html/css_WEB-ITnose

Jun 24, 2016 am 11:20 AM

在上篇文章中我们讲了 compose 的一些方法,比如 source-in , XOR 等等。但这些都是裁剪相关的,下面我们就要介绍一下 blend 。

什么是 Blend(混合)

我的理解 blend 是 compose 中的一步,上篇文章中我已讲到了 compose 的一些方法,但是 blend 是将两张图的颜色混合在一起。

最典型的例子就是三原色,我们可以把红、蓝、绿三个球想象成三个图层,黄、青、洋红就是这三个图层 blend 之后的结果。

Photoshop 里的混合模式就是 blend ,这个功能用过 Photoshop 的人应该都很熟悉了。

CSS 中的 Blend

CSS 中 blend 的标准最起初是由 Adobe 公司提出的草案。

CSS 里有 isolation , mix-blend-mode 和 background-blend-mode 三个属性来控制混合的方式。

  • mix-blend-mode 指定一个元素将如何与它「下面」的元素混合

  • background-blend-mode 指定 background-image 如何与 background-color 混合

  • isolation 指定一个元素不参与混合

下面的网站用 css blend 实现了很多复杂的图形,其中一个背景的 css 代码也不过就十几行,比加载一张图片体积小了很多。

http://bennettfeely.com/gradients/

Blend 各种模式的计算方式

blend 属性有很多值,比如 darken , overlay , color-dodge 。其中使用量最多的就是 multiply 正片叠低 ,「正片叠底」这个词很多设计师应该都知道,但是明白它到底是做什么的就不多了。

那么现在我们就来讲一下各种混合模式的计算方式。

Cs = source color = 前景颜色

Cb = backdrop color = 背景颜色

B(Cb, Cs) = 混合模式

Cs、Cb 为一个 1*3 的矩阵 [R, G, B]矩阵中每个元素的取值范围为 0 ~ 1

normal

B(Cb, Cs) = Cs
Copy after login

normal 方式其实和 compose 中的 source over 行为一样,也是我们一般图片叠加的方法。

multiply

B(Cb, Cs) = Cb x Cs
Copy after login

通过公式我们可以看出混合后的结果比前景和背景都要暗。并且前景和背景中的白色都会被剔除掉。

screen

B(Cb, Cs) = 1 - [(1 - Cb) x (1 - Cs)]          = Cb + Cs -(Cb x Cs)
Copy after login

screen 感觉和 multiply 作用正好相反,生成的结果比背景、前景都要亮。

hard-light

if(Cs <= 0.5)    B(Cb, Cs) = Multiply(Cb, 2 x Cs)else    B(Cb, Cs) = Screen(Cb, 2 x Cs -1)  
Copy after login
Copy after login

overlay

B(Cb, Cs) = HardLight(Cs, Cb)
Copy after login

把 hard-light 中背景和前景颠倒过来就是 overlay

darken

B(Cb, Cs) = min(Cb, Cs)
Copy after login

选择背景、前景中最暗的像素

lighten

B(Cb, Cs) = max(Cb, Cs)
Copy after login

选择背景、前景中最亮的像素

color-dodge

if(Cb == 0)    B(Cb, Cs) = 0else if(Cs == 1)    B(Cb, Cs) = 1else    B(Cb, Cs) = min(1, Cb / (1 - Cs))
Copy after login

color-burn

if(Cb == 1)    B(Cb, Cs) = 1else if(Cs == 0)    B(Cb, Cs) = 0else    B(Cb, Cs) = 1 - min(1, (1 - Cb) / Cs)
Copy after login

hard-light

if(Cs <= 0.5)    B(Cb, Cs) = Multiply(Cb, 2 x Cs)else    B(Cb, Cs) = Screen(Cb, 2 x Cs -1)  
Copy after login
Copy after login

soft-light

    if(Cs <= 0.5)        B(Cb, Cs) = Cb - (1 - 2 x Cs) x Cb x (1 - Cb)    else        B(Cb, Cs) = Cb + (2 x Cs - 1) x (D(Cb) - Cb)with    if(Cb <= 0.25)        D(Cb) = ((16 * Cb - 12) x Cb + 4) x Cb    else        D(Cb) = sqrt(Cb)
Copy after login

difference

B(Cb, Cs) = | Cb - Cs |
Copy after login

exclusion

B(Cb, Cs) = Cb + Cs - 2 x Cb x Cs
Copy after login

参考资料

Compositing and Blending Level 1

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles