aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performanceelementtiming/tojson/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/performanceelementtiming/tojson/index.html')
-rw-r--r--files/fr/web/api/performanceelementtiming/tojson/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/files/fr/web/api/performanceelementtiming/tojson/index.html b/files/fr/web/api/performanceelementtiming/tojson/index.html
new file mode 100644
index 0000000000..6d0ff16b06
--- /dev/null
+++ b/files/fr/web/api/performanceelementtiming/tojson/index.html
@@ -0,0 +1,66 @@
+---
+title: PerformanceElementTiming.toJSON()
+slug: Web/API/PerformanceElementTiming/toJSON
+tags:
+ - API
+ - Method
+ - Méthode
+ - Reference
+ - toJSON()
+ - PerformanceElementTiming
+translation_of: Web/API/PerformanceElementTiming/toJSON
+---
+<div>{{APIRef("Element Timing API")}}</div>
+
+<p class="summary">La méthode <strong><code>toJSON()</code></strong> de l'interface <a href="/fr/docs/Web/API/PerformanceElementTiming"><code>PerformanceElementTiming</code></a> est un sérialiseur standard. Elle renvoie une représentation JSON des propriétés de l'objet.</p>
+
+<h2 id="Syntax">Syntaxe</h2>
+
+<pre class="brush:js">var <var>json</var> = PerformanceElementTiming.toJSON();</pre>
+
+<h3 id="Returns">Valeur de retour</h3>
+
+<dl>
+ <dt><code>json</code></dt>
+ <dd>Un objet JSON qui est la sérialisation de l'objet <a href="/fr/docs/Web/API/PerformanceElementTiming"><code>PerformanceElementTiming</code></a>.</dd>
+</dl>
+
+<h2 id="Examples">Exemples</h2>
+
+<p>Dans cet exemple, l'appel de <code>entry.toJSON()</code> renvoie une représentation JSON de l'objet <a href="/fr/docs/Web/API/PerformanceElementTiming"><code>PerformanceElementTiming</code></a>, avec les informations sur l'élément image.</p>
+
+<pre class="brush:html">&lt;img src="image.jpg" alt="une belle image" elementtiming="big-image" id="myImage"&gt;</pre>
+
+<pre class="brush:js">const <var>observer</var> = new PerformanceObserver((list) => {
+ let <var>entries</var> = list.getEntries().forEach(function (entry) {
+ if (entry.identifier === "big-image") {
+ console.log(entry.toJSON());
+ }
+ });
+});
+observer.observe({ entryTypes: ["element"] });</pre>
+
+<p class="notecard note">Cet exemple utilise l'interface <a href="/fr/docs/Web/API/PerformanceObserver"><code>PerformanceObserver</code></a> pour créer une liste d'événements de mesure des performances. Dans notre cas, nous observons l'élément <a href="/fr/docs/Web/API/PerformanceEntry/entryType"><code>PerformanceEntry.entryType</code></a> afin d'utiliser l'interface <code>PerformanceElementTiming</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('Element Timing API','#dom-performanceelementtiming-tojson','PerformanceElementTiming.toJson()')}}</td>
+ <td>{{Spec2('Element Timing API')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.PerformanceElementTiming.toJSON")}}</p>