blob: a5447ec39d1e7002b1a99c466fe785d2f0e9388a (
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
|
---
title: <feSpotLight>
slug: Web/SVG/Element/feSpotLight
tags:
- Element
- SVG
- SVG Filter
- SVG Light Source
translation_of: Web/SVG/Element/feSpotLight
---
<div>{{SVGRef}}</div>
<p>La primitive de filtre <a href="/fr/docs/Web/SVG">SVG</a> <strong><code><feSpotLight></code></strong> définit une source de lumière qui permet de créer un feu de projecteur. On la place dans une primitive de filtre d'éclairage: {{SVGElement("feDiffuseLighting")}} ou {{SVGElement("feSpecularLighting")}}.</p>
<h2 id="Contexte_d'utilisation">Contexte d'utilisation</h2>
<p>{{svginfo}}</p>
<h2 id="Attributs">Attributs</h2>
<h3 id="Attributs_globaux">Attributs globaux</h3>
<ul>
<li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_base">Attributs de base</a></li>
</ul>
<h3 id="Attributs_spécifiques">Attributs spécifiques</h3>
<ul>
<li>{{SVGAttr("x")}}</li>
<li>{{SVGAttr("y")}}</li>
<li>{{SVGAttr("z")}}</li>
<li>{{SVGAttr("pointsAtX")}}</li>
<li>{{SVGAttr("pointsAtY")}}</li>
<li>{{SVGAttr("pointsAtZ")}}</li>
<li>{{SVGAttr("specularExponent")}}</li>
<li>{{SVGAttr("limitingConeAngle")}}</li>
</ul>
<h2 id="Interface_DOM">Interface DOM</h2>
<p>Cet élément implémente l'interface {{domxref("SVGFESpotLightElement")}}.</p>
<h2 id="Exemple">Exemple</h2>
<h3 id="SVG">SVG</h3>
<pre class="brush: html"><svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="spotlight">
<feSpecularLighting result="spotlight" specularConstant="1.5"
specularExponent="4" lighting-color="#FFF">
<feSpotLight x="600" y="600" z="400" limitingConeAngle="5.5" />
</feSpecularLighting>
<feComposite in="SourceGraphic" in2="spotlight" operator="out"
k1="0" k2="1" k3="1" k4="0"/>
</filter>
</defs>
<image xlink:href="/files/6457/mdn_logo_only_color.png" x="10%" y="10%"
width="80%" height="80%" style="filter:url(#spotlight);"/>
</svg></pre>
<h3 id="Résultat">Résultat</h3>
<p>{{EmbedLiveSample("Exemple", 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">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Filters 1.0", "#feSpotLightElement", "<feSpotLight>")}}</td>
<td>{{Spec2("Filters 1.0")}}</td>
<td>Aucun changement</td>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "filters.html#feSpotLightElement", "<feSpotLight>")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("svg.elements.feSpotLight")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{SVGElement("filter")}}</li>
<li>{{SVGElement("animate")}}</li>
<li>{{SVGElement("set")}}</li>
<li>{{SVGElement("feDiffuseLighting")}}</li>
<li>{{SVGElement("feSpecularLighting")}}</li>
<li>{{SVGElement("feDistantLight")}}</li>
<li>{{SVGElement("fePointLight")}}</li>
<li><a href="/fr/docs/Web/SVG/Tutoriel/filtres">Tutoriel SVG: Filtres</a></li>
</ul>
|