From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/css/mix-blend-mode/index.html | 649 +++++++++++++++++++++++++++++ 1 file changed, 649 insertions(+) create mode 100644 files/ru/web/css/mix-blend-mode/index.html (limited to 'files/ru/web/css/mix-blend-mode/index.html') diff --git a/files/ru/web/css/mix-blend-mode/index.html b/files/ru/web/css/mix-blend-mode/index.html new file mode 100644 index 0000000000..996a1d611a --- /dev/null +++ b/files/ru/web/css/mix-blend-mode/index.html @@ -0,0 +1,649 @@ +--- +title: mix-blend-mode +slug: Web/CSS/mix-blend-mode +tags: + - CSS + - CSS композитинг + - CSS свойство +translation_of: Web/CSS/mix-blend-mode +--- +
{{CSSRef}}
+ +

CSS свойство mix-blend-mode определяет режим смешивания цветов выбранного элемента с низлежащими слоями.

+ +

{{EmbedInteractiveExample("pages/css/mix-blend-mode.html")}}

+ + + +

Синтаксис

+ +
/* Ключевые слова */
+mix-blend-mode: normal;
+mix-blend-mode: multiply;
+mix-blend-mode: screen;
+mix-blend-mode: overlay;
+mix-blend-mode: darken;
+mix-blend-mode: lighten;
+mix-blend-mode: color-dodge;
+mix-blend-mode: color-burn;
+mix-blend-mode: hard-light;
+mix-blend-mode: soft-light;
+mix-blend-mode: difference;
+mix-blend-mode: exclusion;
+mix-blend-mode: hue;
+mix-blend-mode: saturation;
+mix-blend-mode: color;
+mix-blend-mode: luminosity;
+
+/* Глобальные значения */
+mix-blend-mode: initial;
+mix-blend-mode: inherit;
+mix-blend-mode: unset;
+
+ +

Значения

+ +
+
{{cssxref("<blend-mode>")}}
+
Режим смешивания, который нужно применить.
+
+ +

Формальный синтаксис

+ +
{{csssyntax}}
+ +

Примеры

+ + + +

{{EmbedLiveSample("mix-blend-mode", "100%", 1600, "", "", "example-outcome-frame")}}

+ +

Пример HTML

+ +
<div class="isolate">
+  <div class="circle circle-1"></div>
+  <div class="circle circle-2"></div>
+  <div class="circle circle-3"></div>
+</div>
+ +
.circle {
+  width: 80px;
+  height: 80px;
+  border-radius: 50%;
+  mix-blend-mode: screen;
+  position: absolute;
+}
+
+.circle-1 {
+  background: red;
+}
+
+.circle-2 {
+  background: lightgreen;
+  left: 40px;
+}
+
+.circle-3 {
+  background: blue;
+  left: 20px;
+  top: 40px;
+}
+
+.isolate {
+  isolation: isolate; /* Без isolation, цвет фона будет учитываться */
+  position: relative;
+}
+ +

{{EmbedLiveSample("Пример_HTML", "100%", "180")}}

+ +

Пример SVG

+ +

Этот пример повторяет предыдущий с использованием SVG.

+ +
<svg>
+  <g class="isolate">
+    <circle cx="40" cy="40" r="40" fill="red"/>
+    <circle cx="80" cy="40" r="40" fill="lightgreen"/>
+    <circle cx="60" cy="80" r="40" fill="blue"/>
+  </g>
+</svg>
+ +
circle { mix-blend-mode: screen; }
+.isolate { isolation: isolate; } /* Без isolation, цвет фона будет учитываться */
+ +

{{EmbedLiveSample("Пример_SVG", "100%", "180")}}

+ +

Спецификации

+ + + + + + + + + + + + + + + + +
СпецификацияСтатусКомментарий
{{ SpecName('Compositing', '#mix-blend-mode', 'mix-blend-mode') }}{{ Spec2('Compositing') }}Первоначальное определение
+ +

Совместимость с браузерами

+ +

{{Compat("css.properties.mix-blend-mode")}}

+ +

Смотрите также

+ + -- cgit v1.2.3-54-g00ecf