diff options
author | MDN <actions@users.noreply.github.com> | 2021-06-30 00:38:38 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-06-30 00:38:38 +0000 |
commit | c98a9b1cf02d9143cc6924f1991d600c0f807411 (patch) | |
tree | f42fa9c2dada7edef3ad108024fb9dc68e3c13de /files/fr/web/css | |
parent | e189146261073bc1cfb436698e3febd15e09cab4 (diff) | |
download | translated-content-c98a9b1cf02d9143cc6924f1991d600c0f807411.tar.gz translated-content-c98a9b1cf02d9143cc6924f1991d600c0f807411.tar.bz2 translated-content-c98a9b1cf02d9143cc6924f1991d600c0f807411.zip |
[CRON] sync translated content
Diffstat (limited to 'files/fr/web/css')
-rw-r--r-- | files/fr/web/css/paint()/index.html | 109 | ||||
-rw-r--r-- | files/fr/web/css/transform-function/translatex/index.html | 109 |
2 files changed, 0 insertions, 218 deletions
diff --git a/files/fr/web/css/paint()/index.html b/files/fr/web/css/paint()/index.html deleted file mode 100644 index a7340876f9..0000000000 --- a/files/fr/web/css/paint()/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: paint() -slug: Web/CSS/paint() -tags: - - CSS - - Fonction - - Houdini - - Reference - - Web -translation_of: Web/CSS/paint() ---- -<div>{{CSSRef}}{{SeeCompatTable}}</div> - -<p>La fonction CSS <strong><code>paint()</code></strong> définit une {{cssxref("<image>")}} dont la valeur est générée par un <em>PaintWorklet</em>.</p> - -<h2 id="Syntax" name="Syntax">Syntaxe</h2> - -<pre class="syntaxbox notranslate">paint(<var>workletName</var>, <var>parameters</var>)</pre> - -<h3 id="Paramètres">Paramètres</h3> - -<dl> - <dt><code><var>workletName</var></code></dt> - <dd>Le nom du <em>worklet</em> enregistré.</dd> - <dt><code><var>parameters</var></code></dt> - <dd>Des paramètres supplémentaires optionnels, passés aux <em>paintWorklet</em>.</dd> -</dl> - -<h2 id="Examples" name="Examples">Exemples</h2> - -<p>Il est possible de passer des arguments supplémentaires grâce à la fonction CSS <code>paint()</code>. Dans cet exemple, on passe deux arguments : le premier indiquant si l'arrière-plan est rempli ou si on utilise juste son contour et le second indiquant la largeur de ce contour :</p> - -<pre class="brush: html hidden notranslate"><ul> - <li>item 1</li> - <li>item 2</li> - <li>item 3</li> - <li>item 4</li> - <li>item 5</li> - <li>item 6</li> - <li>item 7</li> - <li>item 8</li> - <li>item 9</li> - <li>item 10</li> - <li>item 11</li> - <li>item 12</li> - <li>item 13</li> - <li>item 14</li> - <li>item 15</li> - <li>item 16</li> - <li>item 17</li> - <li>item 18</li> - <li>item 19</li> - <li>item 20</li> -</ul></pre> - -<pre class="brush: js hidden notranslate"> CSS.paintWorklet.addModule('https://mdn.github.io/houdini-examples/cssPaint/intro/worklets/hilite.js'); -</pre> - -<pre class="brush: css notranslate">li { - --boxColor: hsla(55, 90%, 60%, 1.0); - background-image: paint(hollowHighlights, stroke, 2px); -} - -li:nth-of-type(3n) { - --boxColor: hsla(155, 90%, 60%, 1.0); - background-image: paint(hollowHighlights, filled, 3px); -} - -li:nth-of-type(3n+1) { - --boxColor: hsla(255, 90%, 60%, 1.0); - background-image: paint(hollowHighlights, stroke, 1px); -}</pre> - -<p>On a ici ajouté <a href="/fr/docs/Web/CSS/--*">une propriété personnalisée</a> dans le sélecteur du bloc. Ces propriétés personnalisées peuvent être manipulées par le <em>PaintWorklet</em>.</p> - -<p>{{EmbedLiveSample("Examples", 300, 300)}}</p> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">État</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSS Painting API', '#paint-notation', 'Paint Notation')}}</td> - <td>{{Spec2('CSS Painting API')}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilité des navigateurs</h2> - -<p>{{Compat("css.types.image.paint")}}</p> - -<h2 id="See_also" name="See_also">Voir aussi</h2> - -<ul> - <li>{{domxref('PaintWorklet')}}</li> - <li>{{domxref('CSS Painting API')}}</li> - <li><a href="/fr/docs/Web/API/CSS_Painting_API/Guide">Utiliser l'API CSS Painting</a></li> - <li>{{cssxref("<image>")}}</li> - <li>{{domxref("canvas")}}</li> -</ul> diff --git a/files/fr/web/css/transform-function/translatex/index.html b/files/fr/web/css/transform-function/translatex/index.html deleted file mode 100644 index 76f583c665..0000000000 --- a/files/fr/web/css/transform-function/translatex/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: translateX() -slug: Web/CSS/transform-function/translateX -tags: - - CSS - - Fonction - - Reference - - Transformations CSS -translation_of: Web/CSS/transform-function/translateX ---- -<div>{{CSSRef}}</div> - -<p>La fonction <code><strong>translateX()</strong></code> permet de déplacer un élément horizontalement. Cette transformation est caractérisée par une longueur (type {{cssxref("<length>")}}) qui définit l'amplitude du mouvement horizontal. La valeur obtenue par cette fonction est de type {{cssxref("<transform-function>")}}.</p> - -<p><img src="https://mdn.mozillademos.org/files/3544/transform-functions-translateX_2.png" style="height: 146px; width: 243px;"></p> - -<p><code>translateX(tx)</code> est une notation raccourcie équivalente à <code>translate(tx, 0)</code>.</p> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="syntaxbox">translateX(t) -</pre> - -<h3 id="Valeurs">Valeurs</h3> - -<dl> - <dt><code>t</code></dt> - <dd>Une valeur de type {{cssxref("<length>")}} qui représente l'abscisse (la coordonnée en X) du vecteur de translation.</dd> -</dl> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Coordonnées cartésiennes sur ℝ<sup>2</sup></th> - <th scope="col">Coordonnées homogènes sur ℝℙ<sup>2</sup></th> - <th scope="col">Coordonnées cartésiennes sur ℝ<sup>3</sup></th> - <th scope="col">Coordonnées homogènes sur ℝℙ<sup>3</sup></th> - </tr> - </thead> - <tbody> - <tr> - <td colspan="1" rowspan="2"> - <p>Une translation n'est pas une transformation linéaire sur ℝ<sup>2</sup> et on ne peut donc pas la représenter en utilisant une matrice exprimée dans le système cartésien.</p> - </td> - <td><math> <mfenced><mtable><mtr>1<mtd>0</mtd><mtd>t</mtd></mtr><mtr>0<mtd>1</mtd><mtd>0</mtd></mtr><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr></mtable> </mfenced> </math></td> - <td colspan="1" rowspan="2"><math> <mfenced><mtable><mtr>1<mtd>0</mtd><mtd>t</mtd></mtr><mtr>0<mtd>1</mtd><mtd>0</mtd></mtr><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr></mtable> </mfenced> </math></td> - <td colspan="1" rowspan="2"><math> <mfenced><mtable><mtr>1<mtd>0</mtd><mtd>0</mtd><mtd>t</mtd></mtr><mtr>0<mtd>1</mtd><mtd>0</mtd><mtd>0</mtd></mtr><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd><mtd>0</mtd></mtr><mtr><mtd>0</mtd><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr></mtable> </mfenced> </math></td> - </tr> - <tr> - <td><code>[1 0 0 1 t 0]</code></td> - </tr> - </tbody> -</table> - -<h2 id="Exemples">Exemples</h2> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><p>toto</p> -<p class="transformation">truc</p> -<p>toto</p></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css">p { - width: 50px; - height: 50px; - background-color: teal; -} - -.transformation { - transform: translateX(10px); - background-color: blue; -} -</pre> - -<h3 id="Résultat">Résultat</h3> - -<p>{{EmbedLiveSample("Exemples","100%","250")}}</p> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">État</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName("CSS3 Transforms", "#funcdef-transform-translatex", "translateX()")}}</td> - <td>{{Spec2("CSS3 Transforms")}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>Voir la page sur le type de donnée <code><a href="/fr/docs/Web/CSS/transform-function#Compatibilité_des_navigateurs"><transform-function></a></code> pour les informations de compatibilité associées.</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>{{cssxref("transform")}}</li> - <li>{{cssxref("<transform-function>")}}</li> -</ul> |