blob: 17d633527ad4c1073738b3472bbc71cf82951278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
---
title: backdrop-filter
slug: Web/CSS/backdrop-filter
tags:
- CSS
- CSS Eigenschaft
- Grafik
- Layout
- NeedsContent
- NeedsLiveSample
- NeedsMobileBrowserCompatibility
- Referenz
- SVG
- SVG Filter
- Web
translation_of: Web/CSS/backdrop-filter
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>backdrop-filter</code> CSS Eigenschaft beschreibt den Bereich hinter einem Element für Effekte wie Unschärfe oder Farbverschiebung, welcher anschließend durch das Element gesehen werden kann, indem die Transparenz/Deckkraft des Elements angepasst wird.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush: css">/* Schlüsselwortwert */
backdrop-filter: none;
/* URL zu SVG-Filter */
backdrop-filter: url(commonfilters.svg#filter);
/* Filterfunktionen */
backdrop-filter: blur(2px);
backdrop-filter: brightness(60%);
backdrop-filter: contrast(40%);
backdrop-filter: drop-shadow(4px 4px 10px blue);
backdrop-filter: grayscale(30%);
backdrop-filter: hue-rotate(120deg);
backdrop-filter: invert(70%);
backdrop-filter: opacity(20%);
backdrop-filter: sepia(90%);
backdrop-filter: saturate(80%);
/* Mehrere Filterfunktionen */
backdrop-filter: url(filters.svg#filter) blur(4px) saturate(150%);
/* Globale Werte */
backdrop-filter: inherit;
backdrop-filter: initial;
backdrop-filter: unset;
</pre>
<h3 id="Werte">Werte</h3>
<p>TODO</p>
<h3 id="Formale_Syntax">Formale Syntax</h3>
{{csssyntax}}
<h2 id="Beispiele">Beispiele</h2>
<pre class="brush: css">backdrop-filter: blur(10px);
</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Filters 2.0', '#BackdropFilterProperty', 'backdrop-filter')}}</td>
<td>{{Spec2('Filters 2.0')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.properties.backdrop-filter")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{cssxref("filter")}}</li>
<li><a href="http://www.domneill.com/blog/posts/2015/07/28/my-favourite-new-features-in-webkit-and-safari/">Blog Post von Dom Neill mit Beispielen</a></li>
<li><a href="http://product.voxmedia.com/til/2015/2/17/8053347/css-ios-transparency-with-webkit-backdrop-filter">Erstellen von iOS-ähnlichen Transparenzeffekten in CSS mit backdrop-filter</a></li>
</ul>
|