aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/intersectionobserver
diff options
context:
space:
mode:
authortristantheb <tristantheb@users.noreply.github.com>2021-04-11 18:42:16 +0200
committerGitHub <noreply@github.com>2021-04-11 18:42:16 +0200
commit532a5d7c7adabdd55e65afeec0c09caced92fc68 (patch)
tree612729fa270a2e97f21955d4a16a7a09d2390e74 /files/fr/web/api/intersectionobserver
parent69d118500cccd88ca649d8bd12cf02019cd33a6d (diff)
downloadtranslated-content-532a5d7c7adabdd55e65afeec0c09caced92fc68.tar.gz
translated-content-532a5d7c7adabdd55e65afeec0c09caced92fc68.tar.bz2
translated-content-532a5d7c7adabdd55e65afeec0c09caced92fc68.zip
L10N: Translate missing IntersectionObserver interface pages (#412)
* L10N: Translation of 2 missing pages on the IntersectionObserver interface * Review - IntersectionObserver.disconnect() - minor rewordings * Review - IntersectionObserver.takeRecords() - minor fixes Co-authored-by: julieng <julien.gattelier@gmail.com>
Diffstat (limited to 'files/fr/web/api/intersectionobserver')
-rw-r--r--files/fr/web/api/intersectionobserver/disconnect/index.html60
-rw-r--r--files/fr/web/api/intersectionobserver/takerecords/index.html65
2 files changed, 125 insertions, 0 deletions
diff --git a/files/fr/web/api/intersectionobserver/disconnect/index.html b/files/fr/web/api/intersectionobserver/disconnect/index.html
new file mode 100644
index 0000000000..b2d7220fc3
--- /dev/null
+++ b/files/fr/web/api/intersectionobserver/disconnect/index.html
@@ -0,0 +1,60 @@
+---
+title: IntersectionObserver.disconnect()
+slug: Web/API/IntersectionObserver/disconnect
+tags:
+ - API
+ - Disconnect
+ - Intersection Observer
+ - Intersection Observer API
+ - IntersectionObserver
+ - Method
+ - Reference
+translation_of: Web/API/IntersectionObserver/disconnect
+---
+<div>{{APIRef("Intersection Observer API")}}</div>
+
+<p>La méthode <code><strong>disconnect()</strong></code>, rattachée à l'interface <a href="/fr/docs/Web/API/IntersectionObserver"><code>IntersectionObserver</code></a>, arrête l'observation des changements de visibilité de l'ensemble des éléments cibles.</p>
+
+<h2 id="syntax">Syntaxe</h2>
+
+<pre class="syntaxbox"><var>intersectionObserver</var>.disconnect();</pre>
+
+<h3 id="parameters">Paramètres</h3>
+
+<p>Aucun.</p>
+
+<h3 id="return_value">Valeur de retour</h3>
+
+<p><code>undefined</code>.</p>
+
+<h2 id="specifications">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('IntersectionObserver','#dom-intersectionobserver-disconnect','IntersectionObserver.disconnect()')}}
+ </td>
+ <td>{{Spec2('IntersectionObserver')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.IntersectionObserver.disconnect")}}</p>
+
+<h2 id="see_also">Voir aussi</h2>
+
+<ul>
+ <li><a href="/fr/docs/Web/API/IntersectionObserver/observe"><code>observe()</code></a></li>
+ <li><a href="/fr/docs/Web/API/IntersectionObserver/unobserve"><code>unobserve()</code></a></li>
+</ul>
diff --git a/files/fr/web/api/intersectionobserver/takerecords/index.html b/files/fr/web/api/intersectionobserver/takerecords/index.html
new file mode 100644
index 0000000000..de983e5aed
--- /dev/null
+++ b/files/fr/web/api/intersectionobserver/takerecords/index.html
@@ -0,0 +1,65 @@
+---
+title: IntersectionObserver.takeRecords()
+slug: Web/API/IntersectionObserver/takeRecords
+tags:
+ - API
+ - Intersection Observer
+ - Intersection Observer API
+ - IntersectionObserver
+ - Method
+ - NeedsExample
+ - Reference
+ - takeRecords
+translation_of: Web/API/IntersectionObserver/takeRecords
+---
+<div>{{APIRef("Intersection Observer API")}}</div>
+
+<p class="summary">La méthode <code><strong>takeRecords()</strong></code> de l'interface <a href="/fr/docs/Web/API/IntersectionObserver"><code>IntersectionObserver</code></a> renvoie un tableau d'objets <a href="/fr/docs/Web/API/IntersectionObserverEntry"><code>IntersectionObserverEntry</code></a>, un pour chaque élément ciblé qui a subi un changement d'intersection depuis la dernière vérification des intersections, soit explicitement par un appel à cette méthode, soit implicitement par un appel automatique à la fonction de rappel de l'observateur.</p>
+
+<div class="notecard note">
+ <p><b>Note :</b></p>
+ <p>Si vous utilisez la fonction de rappel pour surveiller ces changements, vous n'avez pas besoin d'appeler cette méthode. L'appel de cette méthode efface la liste des intersections en attente, de sorte que la fonction de rappel ne sera pas exécutée.</p>
+</div>
+
+<h2 id="syntax">Syntaxe</h2>
+
+<pre class="syntaxbox"><var>intersectionObserverEntries</var> = <var>intersectionObserver</var>.takeRecords();</pre>
+
+<h3 id="parameters">Paramètres</h3>
+
+<p>Aucun.</p>
+
+<h3 id="return_value">Valeur de retour</h3>
+
+<p>Un tableau d'objets <a href="/fr/docs/Web/API/IntersectionObserverEntry"><code>IntersectionObserverEntry</code></a>, un pour chaque élément cible dont l'intersection avec la racine a changé depuis la dernière vérification des intersections.</p>
+
+<h2 id="specifications">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('IntersectionObserver','#dom-intersectionobserver-takerecords','IntersectionObserver.takeRecords()')}}
+ </td>
+ <td>{{Spec2('IntersectionObserver')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.IntersectionObserver.takeRecords")}}</p>
+
+<h2 id="see_also">Voir aussi</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/API/Intersection_Observer_API">L'API <i>Intersection Observer</i></a></li>
+</ul>