diff options
Diffstat (limited to 'files/fr/web/api/intersectionobserverentry/target/index.html')
-rw-r--r-- | files/fr/web/api/intersectionobserverentry/target/index.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/files/fr/web/api/intersectionobserverentry/target/index.html b/files/fr/web/api/intersectionobserverentry/target/index.html new file mode 100644 index 0000000000..ebea1ca87b --- /dev/null +++ b/files/fr/web/api/intersectionobserverentry/target/index.html @@ -0,0 +1,60 @@ +--- +title: IntersectionObserverEntry.target +slug: Web/API/IntersectionObserverEntry/target +tags: + - API + - Intersection Observer + - IntersectionObserver + - Propriété + - target +translation_of: Web/API/IntersectionObserverEntry/target +--- +<div>{{APIRef("Intersection Observer API")}}{{SeeCompatTable}}</div> + +<p><span class="seoSummary">La propriété en lecture seule <strong><code>target</code></strong> de l'interface {{domxref("IntersectionObserverEntry")}} indique quel {{domxref("Element")}} ciblé a changé sa proportion d'intersection avec l'élément racine.</span></p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox"><var><code>var <em>target</em> = </code>IntersectionObserverEntry</var>.target; +</pre> + +<h3 id="Valeur">Valeur</h3> + +<p>La propriété <code>target</code> de l'<code>IntersectionObserverEntry</code> spécifie quel {{domxref("Element")}} précédemment ciblé par l'appel à {{domxref("IntersectionObserver.observe()")}} dont l'intersection avec la racine a changé.</p> + +<h2 id="Exemple">Exemple</h2> + +<p>Dans cet exemple, la valeur de la propriété CSS {{cssxref("opacity")}} de chaque élément cible vaut son {{domxref("IntersectionObserverEntry.intersectionRatio", "intersectionRatio")}}.</p> + +<pre class="brush: js">function intersectionCallback(entries) { + entries.forEach(function(entry) { + entry.target.opacity = entry.intersectionRatio; + }); +}</pre> + +<p>Ainsi, l'élément devient visible seulement lorsqu'il est entièrement visible, c'est-à-dire que la zone qu'il couvre est contenue dans celle de la racine. Autrement, son opacité diminue graduellement avec sa proportion d'intersection avec son élément racine.</p> + +<p>Pour voir un exemple plus concret, vous pouvez vous renseigner sur l'{{SectionOnPage("/en-US/docs/Web/API/Intersection_Observer_API/Timing_element_visibility", "Handling intersection changes")}}.</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaire</th> + </tr> + <tr> + <td>{{SpecName('IntersectionObserver', '#dom-intersectionobserverentry-target', 'IntersectionObserverEntry.target')}}</td> + <td>{{Spec2('IntersectionObserver')}}</td> + <td>Définition initiale</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> + +<p>{{Compat("api.IntersectionObserverEntry.target")}}</p> |