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
|
---
title: clip-path
slug: Web/SVG/Attribute/clip-path
tags:
- SVG
- SVG Attribute
translation_of: Web/SVG/Attribute/clip-path
---
<div>{{SVGRef}}</div>
<p>L'attribut <strong><code>clip-path</code></strong> permet d'appliquer un détourage à un élément.</p>
<div class="note">
<p><strong>Note :</strong> <code>clip-path</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p>
</div>
<p>Cet attribut peut être appliqué sur tous les éléments, en revanche il n'aura d'effet que sur les éléments suivants: {{SVGElement('a')}}, {{SVGElement('circle')}}, {{SVGElement('clipPath')}}, {{SVGElement('ellipse')}}, {{SVGElement('g')}}, {{SVGElement('glyph')}}, {{SVGElement('image')}}, {{SVGElement('line')}}, {{SVGElement('marker')}}, {{SVGElement('mask')}}, {{SVGElement('path')}}, {{SVGElement('pattern')}}, {{SVGElement('polygon')}}, {{SVGElement('polyline')}}, {{SVGElement('rect')}}, {{SVGElement('svg')}}, {{SVGElement('symbol')}}, {{SVGElement('text')}}, {{SVGElement('use')}}</p>
<h2>Exemple</h2>
<pre class="brush: css hidden">html,body,svg { height:100% }</pre>
<pre class="brush: html"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<clipPath id="myClip" clipPathUnits="objectBoundingBox">
<circle cx=".5" cy=".5" r=".5" />
</clipPath>
<!-- En haut à gauche: Applique un détourage précédemment crée -->
<rect x="1" y="1" width="8" height="8" stroke="green"
clip-path="url(#myClip)" />
<!-- En haut à droite: Applique un détourage sur fill-box via une forme CSS.
Revient à créer un détourage avec clipPathUnits="objectBoundingBox" -->
<rect x="11" y="1" width="8" height="8" stroke="green"
clip-path="circle() fill-box" />
<!-- En bas à gauche: Applique un détourage sur stroke-box via une forme CSS. -->
<rect x="1" y="11" width="8" height="8" stroke="green"
clip-path="circle() stroke-box" />
<!-- En bas à droite: Applique un détourage sur view-box via une forme CSS.
Revient à créer un détourage avec clipPathUnits="userSpaceOnUse" -->
<rect x="11" y="11" width="8" height="8" stroke="green"
clip-path="circle() view-box" />
</svg></pre>
<p>{{EmbedLiveSample('exemple', '100%', 200)}}</p>
<h2 id="Notes_d'usage">Notes d'usage</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="row">Valeur</th>
<td>{{cssxref('url')}} | [ {{cssxref('basic-shape')}} || <geometry-box> ] | <code>none</code></td>
</tr>
<tr>
<th scope="row">Valeur par défaut</th>
<td><code>none</code></td>
</tr>
<tr>
<th scope="row">Animation</th>
<td>Oui</td>
</tr>
</tbody>
</table>
<dl>
<dt><geometry-box></dt>
<dd>une information supplémentaire pour dire comment une {{cssxref('basic-shape', 'forme CSS')}} est appliquée à un élément: <code>fill-box</code> indique d'utiliser la zone de sélection de l'objet ; <code>stroke-box</code> d'utiliser la zone de sélection de l'objet en prenant en plus le contour de l'élément; <code>view-box</code> d'utiliser le document SVG parent.</dd>
</dl>
<div class="note">
<p><strong>Note:</strong> Pour plus d'informations sur la syntaxe de clip-path, voir la propriété CSS {{cssxref('clip-path')}}.</p>
</div>
<h2>Compatibilité des navigateurs</h2>
<p>{{Compat("svg.attributes.presentation.clip-path")}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS Masks", "#the-clip-path", 'clip-path')}}</td>
<td>{{Spec2('CSS Masks')}}</td>
<td>Étend son application aux éléments HTML. La propriété <code>clip-path</code> remplace la propriété {{cssxref("clip")}} dépréciée.</td>
</tr>
<tr>
<td>{{SpecName('SVG1.1', 'masking.html#ClipPathProperty', 'clip-path')}}</td>
<td>{{Spec2('SVG1.1')}}</td>
<td>Définition initiale (s'applique sur les éléments SVG uniquement).</td>
</tr>
</tbody>
</table>
|