diff options
Diffstat (limited to 'files/fr/web/mathml/element/mover/index.md')
-rw-r--r-- | files/fr/web/mathml/element/mover/index.md | 127 |
1 files changed, 52 insertions, 75 deletions
diff --git a/files/fr/web/mathml/element/mover/index.md b/files/fr/web/mathml/element/mover/index.md index 38c8b1e838..f183266eeb 100644 --- a/files/fr/web/mathml/element/mover/index.md +++ b/files/fr/web/mathml/element/mover/index.md @@ -3,84 +3,61 @@ title: <mover> slug: Web/MathML/Element/mover translation_of: Web/MathML/Element/mover --- -<p>{{MathMLRef()}}</p> -<p>L'élément MathML <code><mover></code> est utilisé pour attacher un accent ou une limite au-dessus d'une expression. La syntaxe est la suivante: <code><mover> <em>base overscript</em> </mover></code></p> -<h2 id="Attributs">Attributs</h2> -<dl> - <dt id="attr-accent"> - accent</dt> - <dd> - Lorsqu'il vaut <code>true</code> le script au-dessus est un <em>accent</em>, qui est affiché plus près de la base.<br> - Lorsqu'il vaut <code>false</code> (valeur par défaut) le script au-dessus est une <em>limite</em> au-dessus de la base.</dd> - <dt id="attr-align"> - align</dt> - <dd> - L'alignement du script au-dessus. Les valeurs possibles sont : <code>left</code>, <code>center</code>, et <code>right</code>.</dd> - <dt id="attr-class-id-style"> - class, id, style</dt> - <dd> - Afin d'être utilisés avec les <a href="/fr/docs/CSS">feuilles de styles</a>.</dd> - <dt id="attr-href"> - href</dt> - <dd> - Un hyperlien pointant vers un URI donné.</dd> - <dt id="attr-mathbackground"> - mathbackground</dt> - <dd> - La couleur de fond. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd> - <dt id="attr-mathcolor"> - mathcolor</dt> - <dd> - La couleur du texte. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd> -</dl> -<h2 id="Exemples">Exemples</h2> -<p>Exemple de rendu: <img alt="x+y+z" src="mover.png"></p> -<p>Rendu dans votre navigateur : <math> <mover accent="true"> <mrow> <mi> x </mi> <mo> + </mo> <mi> y </mi> <mo> + </mo> <mi> z </mi> </mrow> <mo> ⏞ </mo> </mover> </math></p> -<pre class="brush: html"><math> +{{MathMLRef()}} -<mover accent="true"> - <mrow> - <mi> x </mi> - <mo> + </mo> - <mi> y </mi> - <mo> + </mo> - <mi> z </mi> - </mrow> - <mo> &#x23DE; <!--TOP CURLY BRACKET--> </mo> -</mover> +L'élément MathML `<mover>` est utilisé pour attacher un accent ou une limite au-dessus d'une expression. La syntaxe est la suivante: `<mover> base overscript </mover>` -</math> -</pre> +## Attributs -<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('MathML3', 'chapter3.html#presm.mover', 'mover') }}</td> - <td>{{ Spec2('MathML3') }}</td> - <td>Spécification courante</td> - </tr> - <tr> - <td>{{ SpecName('MathML2', 'chapter3.html#presm.mover', 'mover') }}</td> - <td>{{ Spec2('MathML2') }}</td> - <td>Spécification initiale</td> - </tr> - </tbody> -</table> +- accent + - : Lorsqu'il vaut `true` le script au-dessus est un _accent_, qui est affiché plus près de la base. + Lorsqu'il vaut `false` (valeur par défaut) le script au-dessus est une _limite_ au-dessus de la base. +- align + - : L'alignement du script au-dessus. Les valeurs possibles sont : `left`, `center`, et `right`. +- class, id, style + - : Afin d'être utilisés avec les [feuilles de styles](/fr/docs/CSS). +- href + - : Un hyperlien pointant vers un URI donné. +- mathbackground + - : La couleur de fond. Il est possible d'utiliser les codes au format `#rgb`, `#rrggbb` et les [noms de couleurs HTML](/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s). +- mathcolor + - : La couleur du texte. Il est possible d'utiliser les codes au format `#rgb`, `#rrggbb` et les [noms de couleurs HTML](/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s). -<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> +## Exemples -<p>{{Compat("mathml.elements.mover")}}</p> +Exemple de rendu: ![x+y+z](mover.png) -<h2 id="See_also">Voir aussi</h2> -<ul> - <li>{{ MathMLElement("munder") }} (Underscript)</li> - <li>{{ MathMLElement("munderover") }} (Underscript-overscript pair)</li> -</ul> +Rendu dans votre navigateur : <math><mover accent="true"><mrow><mi>x </mi><mo>+ </mo><mi>y </mi><mo>+ </mo><mi>z </mi></mrow><mo>⏞</mo></mover></math> + +```html +<math> + +<mover accent="true"> + <mrow> + <mi> x </mi> + <mo> + </mo> + <mi> y </mi> + <mo> + </mo> + <mi> z </mi> + </mrow> + <mo> ⏞ <!--TOP CURLY BRACKET--> </mo> +</mover> + +</math> +``` + +## Spécifications + +| Spécification | Statut | Commentaire | +| ------------------------------------------------------------------------------------ | ---------------------------- | ---------------------- | +| {{ SpecName('MathML3', 'chapter3.html#presm.mover', 'mover') }} | {{ Spec2('MathML3') }} | Spécification courante | +| {{ SpecName('MathML2', 'chapter3.html#presm.mover', 'mover') }} | {{ Spec2('MathML2') }} | Spécification initiale | + +## Compatibilité des navigateurs + +{{Compat("mathml.elements.mover")}} + +## Voir aussi + +- {{ MathMLElement("munder") }} (Underscript) +- {{ MathMLElement("munderover") }} (Underscript-overscript pair) |