diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/pagetransitionevent | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/pagetransitionevent')
-rw-r--r-- | files/fr/web/api/pagetransitionevent/index.md | 73 |
1 files changed, 36 insertions, 37 deletions
diff --git a/files/fr/web/api/pagetransitionevent/index.md b/files/fr/web/api/pagetransitionevent/index.md index b679c056dd..ca4c52d177 100644 --- a/files/fr/web/api/pagetransitionevent/index.md +++ b/files/fr/web/api/pagetransitionevent/index.md @@ -3,62 +3,61 @@ title: PageTransitionEvent slug: Web/API/PageTransitionEvent translation_of: Web/API/PageTransitionEvent --- -<p>{{APIRef("HTML DOM")}}</p> +{{APIRef("HTML DOM")}} -<p>Les évènements de transition de page sont émis quand une page web est chargée ou déchargée.</p> +Les évènements de transition de page sont émis quand une page web est chargée ou déchargée. -<h2 id="Information_du_DOM">Information du DOM</h2> +## Information du DOM -<h3 id="Hiérarchie_d’héritage">Hiérarchie d’héritage</h3> +### Hiérarchie d’héritage -<div><a href="/fr/docs/Web/API/Event">Event</a> +[Event](/fr/docs/Web/API/Event) PageTransitionEvent -<div> PageTransitionEvent</div> -</div> +## Exemple -<h2 id="Exemple">Exemple</h2> +### HTML -<h3 id="HTML">HTML</h3> +```html +<!DOCTYPE html> +<html> +<body onpageshow="myFunction(event)"> +</body> +</html> +``` -<pre class="brush: html"><!DOCTYPE html> -<html> -<body onpageshow="myFunction(event)"> -</body> -</html></pre> +### JavaScript -<h3 id="JavaScript">JavaScript</h3> - -<pre class="brush: js">function myFunction(event) { +```js +function myFunction(event) { if (event.persisted) { alert("La page a été mise en cache par le navigateur"); } else { alert("La page n’a PAS été mise en cache par le navigateur"); } -}</pre> +} +``` -<h2 id="Membres">Membres</h2> +## Membres -<p>L’objet <strong>PageTransitionEvent</strong> possède les types de membres suivants :</p> +L’objet **PageTransitionEvent** possède les types de membres suivants : -<ul> - <li><a href="#Propriétés">Propriétés</a></li> -</ul> +- [Propriétés](#Propriétés) -<h3 id="Propriétés">Propriétés</h3> +### Propriétés -<p>L’objet <strong>PageTransitionEvent</strong> possède les propriétés suivantes :</p> +L’objet **PageTransitionEvent** possède les propriétés suivantes : <table> - <tbody> - <tr> - <th>Propriété</th> - <th>Type d’accès</th> - <th>Description</th> - </tr> - <tr> - <th><code>persisted</code></th> - <th>Lecture seule</th> - <th>Indique si une page web est chargée depuis le cache.</th> - </tr> - </tbody> + <tbody> + <tr> + <th>Propriété</th> + <th>Type d’accès</th> + <th>Description</th> + </tr> + <tr> + <th><code>persisted</code></th> + <th>Lecture seule</th> + <th>Indique si une page web est chargée depuis le cache.</th> + </tr> + </tbody> </table> |