From 532a5d7c7adabdd55e65afeec0c09caced92fc68 Mon Sep 17 00:00:00 2001 From: tristantheb Date: Sun, 11 Apr 2021 18:42:16 +0200 Subject: 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 --- .../api/intersectionobserver/disconnect/index.html | 60 ++++++++++++++++++++ .../intersectionobserver/takerecords/index.html | 65 ++++++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 files/fr/web/api/intersectionobserver/disconnect/index.html create mode 100644 files/fr/web/api/intersectionobserver/takerecords/index.html (limited to 'files/fr/web') 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 +--- +
{{APIRef("Intersection Observer API")}}
+ +

La méthode disconnect(), rattachée à l'interface IntersectionObserver, arrête l'observation des changements de visibilité de l'ensemble des éléments cibles.

+ +

Syntaxe

+ +
intersectionObserver.disconnect();
+ +

Paramètres

+ +

Aucun.

+ +

Valeur de retour

+ +

undefined.

+ +

Spécifications

+ + + + + + + + + + + + + + + + +
SpécificationStatutCommentaire
+ {{SpecName('IntersectionObserver','#dom-intersectionobserver-disconnect','IntersectionObserver.disconnect()')}} + {{Spec2('IntersectionObserver')}}Définition initiale.
+ +

Compatibilité des navigateurs

+ +

{{Compat("api.IntersectionObserver.disconnect")}}

+ +

Voir aussi

+ + 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 +--- +
{{APIRef("Intersection Observer API")}}
+ +

La méthode takeRecords() de l'interface IntersectionObserver renvoie un tableau d'objets IntersectionObserverEntry, 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.

+ +
+

Note :

+

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.

+
+ +

Syntaxe

+ +
intersectionObserverEntries = intersectionObserver.takeRecords();
+ +

Paramètres

+ +

Aucun.

+ +

Valeur de retour

+ +

Un tableau d'objets IntersectionObserverEntry, un pour chaque élément cible dont l'intersection avec la racine a changé depuis la dernière vérification des intersections.

+ +

Spécifications

+ + + + + + + + + + + + + + + + +
SpécificationStatutCommentaire
+ {{SpecName('IntersectionObserver','#dom-intersectionobserver-takerecords','IntersectionObserver.takeRecords()')}} + {{Spec2('IntersectionObserver')}}Définition initiale.
+ +

Compatibilité des navigateurs

+ +

{{Compat("api.IntersectionObserver.takeRecords")}}

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf