diff options
author | Jb Audras <audrasjb@gmail.com> | 2021-07-27 10:14:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 10:14:42 +0200 |
commit | f7b3b4d1c5fd0e3c7c03630466f7e4e76788cb43 (patch) | |
tree | 19ea6978cf51ce3fd1909e93e0d24c1981549616 /files/fr/web/css/_colon_past | |
parent | e5e174d4bfc3be339afb0f76f2c2240fa5778e0e (diff) | |
download | translated-content-f7b3b4d1c5fd0e3c7c03630466f7e4e76788cb43.tar.gz translated-content-f7b3b4d1c5fd0e3c7c03630466f7e4e76788cb43.tar.bz2 translated-content-f7b3b4d1c5fd0e3c7c03630466f7e4e76788cb43.zip |
French translation for CSS `:past` pseudo class reference (#1719)
* Initial translation
* Address few remaining issues spotted by @SphinxKnight
Diffstat (limited to 'files/fr/web/css/_colon_past')
-rw-r--r-- | files/fr/web/css/_colon_past/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/files/fr/web/css/_colon_past/index.html b/files/fr/web/css/_colon_past/index.html new file mode 100644 index 0000000000..cc8a1a3cae --- /dev/null +++ b/files/fr/web/css/_colon_past/index.html @@ -0,0 +1,66 @@ +--- +title: ':past' +slug: 'Web/CSS/:past' +browser-compat: css.selectors.past +translation_of: Web/CSS/:past +--- +<p>{{CSSRef}}</p> + +<p>Le sélecteur de <a href="/fr/docs/Web/CSS/Pseudo-classes">pseudo-classe</a> <a href="/fr/docs/Web/CSS">CSS</a> <strong><code>:past</code></strong> est une pseudo-classe agissant dans la dimension temporelle qui cible n'importe quel élément apparaissant entièrement avant un élément correspondant à {{cssxref(":current")}}. Ce sélecteur peut par exemple servir dans le cas d'une vidéo ayant des sous-titres affichés à l'aide du format <a href="/fr/docs/Web/API/WebVTT_API">WebVTT</a>.</p> + +<pre class="brush: css">:past(p, span) { + display: none; +}</pre> + +<h2 id="syntax">Syntaxe</h2> + +<p>{{csssyntax}}</p> + +<h2 id="examples">Exemples</h2> + +<h3 id="css">CSS</h3> + +<pre class="brush: css">:past(p, span) { + display: none; +}</pre> + +<h3 id="html">HTML</h3> + +<pre class="brush: html"><video controls preload="metadata"> + <source src="video.mp4" type="video/mp4" /> + <source src="video.webm" type="video/webm" /> + <track label="Français" kind="subtitles" srclang="fr" src="subtitles.vtt" default> +</video></pre> + +<h3 id="webvtt">WebVTT</h3> + +<pre>FICHIER WEBVTT + +1 +00:00:03.500 --> 00:00:05.000 +Voici le premier sous-titre + +2 +00:00:06.000 --> 00:00:09.000 +Voici le second sous-titre + +3 +00:00:11.000 --> 00:00:19.000 +Voici le troisième sous-titre +</pre> + +<h2 id="specifications">Spécifications</h2> + +<p>{{Specifications}}</p> + +<h2 id="browser_compatibility">Compatibilité des navigateurs</h2> + +<p>{{Compat}}</p> + +<h2 id="see_also">Voir aussi</h2> + +<ul> + <li><a href="/fr/docs/Web/API/WebVTT_API">Web Video Text Tracks Format (WebVTT)</a></li> + <li>{{cssxref(":current")}}</li> + <li>{{cssxref(":future")}}</li> +</ul> |