aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/html/attributes/elementtiming/index.md
blob: 36cf4b96282076e76bfdb5773b36a15dc918ed5a (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
---
title: 'Attribut HTML : elementtiming'
slug: Web/HTML/Attributes/elementtiming
tags:
  - Attribute
  - Attributes
  - HTML
  - elementtiming
  - Performance
  - Reference
translation_of: Web/HTML/Attributes/elementtiming
---
<p>{{HTMLSidebar}}</p>

<p>L'attribut <strong><code>elementtiming</code></strong> est utilisé pour indiquer qu'un élément est marqué pour le suivi par l'API <a href="/fr/docs/Web/API/Element_timing_API">Element Timing</a>. Cet attribut peut être appliqué aux éléments <a href="/fr/docs/Web/HTML/Element/Img"><code>&lt;img&gt;</code></a>, <a href="/fr/docs/Web/SVG/Element/image"><code>&lt;image&gt;</code></a> à l'intérieur d'un <a href="/fr/docs/Web/SVG/Element/svg"><code>&lt;svg&gt;</code></a>, aux vignettes des éléments <a href="/fr/docs/Web/HTML/Element/video"><code>&lt;video&gt;</code></a>, aux éléments qui ont un <a href="/fr/docs/Web/CSS/background-image"><code>background-image</code></a> et aux éléments contenant des noeuds de texte, comme un <a href="/fr/docs/Web/HTML/Element/p">paragraphe (<code>&lt;p&gt;)</code></a>.</p>

<h2 id="usage">Utilisation</h2>

<p>La valeur donnée pour <code>elementtiming</code> devient un identifiant pour l'élément observé.</p>

<pre class="brush: html">&lt;img alt="alt" src="img.jpg" elementtiming="étiquette pour l'élément"&gt;</pre>

<p>De bons candidats pour les éléments que vous pourriez vouloir observer sont :</p>

<ul>
  <li>L'image principale d'un article.</li>
  <li>Le titre d'un article de blog.</li>
  <li>Les images dans un carrousel pour un site d'achat.</li>
  <li>L'image de l'affiche de la vidéo principale d'une page.</li>
</ul>

<h2 id="examples">Exemples</h2>

<pre class="brush: html">&lt;img alt="Alt pour l'image principale d'un article de blog"
     src="my-massive-image.jpg"
     elementtiming="Image principale"&gt;

&lt;p elementtiming="important-text"&gt;Quelques informations importantes.&lt;/p"&gt;</pre>

<h2 id="specifications">Spécifications</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('Element Timing API', '#sec-modifications-DOM', 'elementtiming')}}</td>
   <td>{{Spec2('Element Timing API')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>

<p>{{Compat("html.elements.attribute.elementtiming")}}</p>

<h2 id="see_also">Voir aussi</h2>

<ul>
  <li><a href="https://web.dev/custom-metrics/">Métriques personnalisées</a> <small>(en anglais)</small></li>
</ul>