blob: afbcb388283958afe42026ea713b9114d935cd21 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
---
title: mask-position
slug: Web/CSS/mask-position
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/mask-position
---
<div>{{CSSRef}}</div>
<p>La propriété <strong><code>mask-position</code></strong> indique la position initiale pour chaque image de masque utilisée. Cette position est relative à l'origine définie via la propriété {{cssxref("mask-origin")}}.</p>
<pre class="brush:css no-line-numbers">/* Valeurs avec un mot-clé */
mask-position: top;
mask-position: bottom;
mask-position: left;
mask-position: right;
mask-position: center;
/* Valeurs en pourcentage */
/* Type <percentage> */
mask-position: 25% 75%;
/* Valeurs en longueur */
/* Type <length> */
mask-position: 0px 0px;
mask-position: 1cm 2cm;
mask-position: 10ch 8em;
/* Valeurs multiples */
mask-position: 0px 0px, center;
/* Valeurs globales */
mask-position: inherit;
mask-position: initial;
mask-position: unset;
</pre>
<h2 id="Syntaxe">Syntaxe</h2>
<h3 id="Valeurs">Valeurs</h3>
<dl>
<dt><code><position></code></dt>
<dd>Une position CSS (type {{cssxref("<position>")}}) qui représente une position par rapport aux côtés de la boîte de l'élément. Les décalages indiqués peuvent être relatifs ou absolus. On notera que la position obtenue peut être située en dehors de la boîte de l'élément.</dd>
</dl>
<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
{{csssyntax}}
<h2 id="Exemples">Exemples</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush: css; highlight[13]">#wrapper {
border: 1px solid black;
width: 250px;
height: 250px;
}
#masked {
width: 250px;
height: 250px;
background: blue linear-gradient(red, blue);
mask-image: url(https://mdn.mozillademos.org/files/12676/star.svg);
mask-repeat: no-repeat;
mask-position: top right; /* Can be changed in the live sample */
margin-bottom: 10px;
}
</pre>
<div class="hidden">
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div id="wrapper">
<div id="masked">
</div>
</div>
<select id="maskPosition">
<option value="top">top</option>
<option value="center">center</option>
<option value="bottom">bottom</option>
<option value="top right" selected>top right</option>
<option value="center center">center center</option>
<option value="bottom left">bottom left</option>
<option value="10px 20px">10px 20px</option>
<option value="60% 20%">60% 20%</option>
</select>
</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">var maskPosition = document.getElementById("maskPosition");
maskPosition.addEventListener("change", function (evt) {
document.getElementById("masked").style.maskPosition = evt.target.value;
});
</pre>
</div>
<h3 id="Résultat">Résultat</h3>
<p>{{EmbedLiveSample("Exemples",200,200)}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS Masks", "#the-mask-position", "mask-position")}}</td>
<td>{{Spec2("CSS Masks")}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("css.properties.mask-position")}}</p>
|