Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.

Filtre textarea()

Impossible de trouver des informations à propos du filtre textarea().

Information (14/02/2010)

J'avais réalisé cette page le 27/02/2003, dans la fougue de la découverte des possibilités du Web. Je laisse donc ces pages à titre d'information, mais avec le recul je ne suis pas du tout convaincu, car les différents filtres présentés ici ne sont valables que pour le navigateur Internet Explorer.

Exemple de syntaxe

  1. <img src="graphique.gif" style="FILTER: GLOW(color=blue, strength=4)">

Après les deux points suit l'appel au filtre par son nom et ses paramètres séparés par des virgules. Le tout entre parenthèses.
Si un filtre ne demande aucun paramètre, les parenthèses sont tout de même présentes (comme pour un appel de fonction).

Nous pouvons combiner plusieurs filtres pour un même élément, comme le montre l'exemple suivant.

  1. <img src="graphique.gif" style="filter:Blur(strength=50) FlipH();">

Inhaltsverzeichnis Haut

Balises HTML sur lesquelles nous pouvons appliquer les filtres

BaliseApplication
BaliseApplication
bodyla totalité de la page affichée
buttonla surface pouvant être cliquée
divle passage en relation avec les mentions de feuilles de style width: et/ou height: et/ou position:
imgle graphique référencé
inputle champ de saisie
marqueele texte déroulant
spanle passage en relation avec les mentions de feuilles de style width: et/ou height: et/ou position:
tablele tableau
tdla cellule de données d'un tableau
textareale champ de saisie à plusieurs lignes
tfootle pied d'un tableau
thla rangée d'entête d'un tableau
theadl'entête d'un tableau
trla rangée d'un tableau

Exemples d'utilisation de filtres

Les exemples changent à chaque chargement de la page. Si vous désirez d'autres exemples, vous pouvez recharger la page.

Exemple avec Alpha()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  4. <head>
  5. <title>filter:0()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Author" lang="fr" content="Andrew Stuart Tanenbaum">
  9. <meta name="Description" content="Utilisation des filtres, Demo">
  10. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  11. <meta name="Reply-to" content="james@gosling.org">
  12. <meta name="Copyright" content="James Gosling">
  13. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  14.  
  15. body {
  16. margin: 2px;
  17. padding: 5px;
  18. font-family: verdana;
  19. font-size: 13px;
  20. min-width: 622px;
  21. background:#FFFFFF;
  22. color:#000000;
  23. }
  24. </style>
  25.  
  26. </head>
  27.  
  28. <body>
  29. <img
  30. style="filter:Alpha(opacity=86, finishopacity=0, style=1);"
  31. src="0Filter.jpg"
  32. align="center"
  33. width="114"
  34. height="114"
  35. alt="Alpha
  36. appliqu&eacute; &agrave; une image">
  37. <span style="width: 100%; filter:Alpha(opacity=86, finishopacity=0, style=1);">
  38. Alpha
  39. appliqu&eacute; &agrave; du texte
  40. </span>
  41. </body>
  42. </html>

Inhaltsverzeichnis Haut

Exemple avec Blur()

  1. <!DOCTYPE html PUBLIC
  2. "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <head>
  5. <title>filter:1()</title>
  6. <meta name="Reply-to" content="fourier.charles@gmail.com">
  7. <meta http-equiv="content-language" content="fr">
  8. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  9. </head>
  10. <body>
  11. <img
  12. style="filter:Blur(strength=17);"
  13. src="1Filter.jpg"
  14. align="center"
  15. width="119"
  16. height="112"
  17. alt="Blur
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Blur(strength=17);">
  20. Blur
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
  3. <head>
  4. <title>filter:2()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Publisher" content="Fourier">
  7. <meta name="Copyright" content="Charles Fourier">
  8. <meta http-equiv="content-language" content="fr">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10.  
  11. body {
  12. margin: 0px;
  13. padding: 16px;
  14. font-family: verdana;
  15. font-size: 18px;
  16. min-width: 723px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <h1>Exemple de filtre Chroma</h1>
  24. width:100%; padding:14px; font-size:44pt; color:red;
  25. filter:2(color=#cd853f)">
  26. Application de Chroma(),
  27. texte avec Chroma
  28. The quick brown fox jumped over the lazy dog.
  29. The quick brown fox jumped over the lazy dog.
  30. The quick brown fox jumped over the lazy dog.
  31. The quick brown fox jumped over the lazy dog.
  32. </div>
  33. </body>
  34. </html>

Inhaltsverzeichnis Haut

Exemple avec DropShadow()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  4. <head>
  5. <title>filter:3()</title>
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="fourier.charles@gmail.com">
  9. <meta name="Publisher" content="Fourier">
  10. <meta http-equiv="content-language" content="fr">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12.  
  13. body {
  14. margin: 0px;
  15. padding: 16px;
  16. font-family: verdana;
  17. font-size: 18px;
  18. min-width: 723px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. width:100%;
  26. padding:14px;
  27. font-size:33pt;
  28. color:blue;
  29. filter:DropShadow(color=#cd853f, offx=2, offy=2)">
  30. Exemples d'utilisation de filtres</p>
  31. </div>
  32.  
  33. <br />
  34. <br />
  35.  
  36. <tr valign="top">
  37. <td width="22%" height="218">
  38. The quick brown fox jumped over the lazy dog.
  39. The quick brown fox jumped over the lazy dog.
  40. The quick brown fox jumped over the lazy dog.
  41. The quick brown fox jumped over the lazy dog.
  42. The quick brown fox jumped over the lazy dog.
  43. </td>
  44. <td width="21%">
  45. &nbsp;
  46. </td>
  47. <td width="57%">
  48. The quick brown fox jumped over the lazy dog.
  49. The quick brown fox jumped over the lazy dog.
  50. </td>
  51. </tr>
  52. </table>
  53.  
  54. </body>
  55. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipH()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:4()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="marx.karl@infobrol.biz">
  7. <meta name="Copyright" content="Karl Marx">
  8. <meta http-equiv="content-language" content="fr">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10.  
  11. body {
  12. margin: 0px;
  13. padding: 16px;
  14. font-family: verdana;
  15. font-size: 18px;
  16. min-width: 723px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <img
  24. style="filter:FlipH();"
  25. src="4Filter.jpg"
  26. align="center"
  27. width="120"
  28. height="90"
  29. alt="FlipH
  30. appliqu&eacute; &agrave; une image">
  31. <span style="width: 100%; filter:FlipH();">
  32. FlipH
  33. appliqu&eacute; &agrave; du texte
  34. </span>
  35. </body>
  36. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipV()

  1. <!DOCTYPE html PUBLIC
  2. "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <head>
  5. <title>filter:5()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Author" lang="fr" content="Gustave de Molinari">
  9. <meta name="Reply-to" content="anderson@carldavid.org">
  10. <meta name="Publisher" content="Carl David">
  11. <meta name="Copyright" content="Anderson Carl David">
  12. <meta http-equiv="content-language" content="fr">
  13. </head>
  14. <body>
  15. <h1>Exemple de filtre FlipV</h1>
  16. <div align="center">
  17. <img
  18. src="filter_5.gif"
  19. style="filter:FlipV()"
  20. width="154"
  21. height="130"
  22. alt="Exemple de filtre 5"
  23. border="0">
  24. </div>
  25. </body>
  26. </html>

Inhaltsverzeichnis Haut

Exemple avec Glow()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
  3. <head>
  4. <title>filter:6()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="michael@faraday.info">
  10. <meta name="Publisher" content="Faraday">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12.  
  13. body {
  14. margin: 0px;
  15. padding: 16px;
  16. font-family: verdana;
  17. font-size: 18px;
  18. min-width: 723px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <h1>Exemple de filtre Glow</h1>
  26. <div align="center">
  27. <img
  28. src="filter_6.gif"
  29. style="filter:Glow(color=#8470ff)"
  30. width="125"
  31. height="182"
  32. alt="Exemple de filtre 6"
  33. border="0">
  34. </div>
  35. </body>
  36. </html>

Inhaltsverzeichnis Haut

Exemple avec Gray()

  1. <head>
  2. <title>filter:7()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Reply-to" content="alessandro@volta.org">
  5. <meta name="Copyright" content="Alessandro Volta">
  6. <meta http-equiv="content-language" content="fr">
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <h1>Exemple de filtre Gray</h1>
  10. <div align="center">
  11. <img
  12. src="filter_7.gif"
  13. style="filter:Gray()"
  14. width="77"
  15. height="169"
  16. alt="Exemple de filtre 7"
  17. border="0">
  18. </div>
  19. </body>
  20. </html>

Inhaltsverzeichnis Haut

Exemple avec Invert()

  1. <head>
  2. <title>filter:8()</title>
  3. <meta name="Copyright" content="Andrew Morton">
  4. <meta http-equiv="content-language" content="fr">
  5. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  6. </head>
  7. <body>
  8. <img
  9. style="filter:Invert();"
  10. src="8Filter.jpg"
  11. align="center"
  12. width="116"
  13. height="109"
  14. alt="Invert
  15. appliqu&eacute; &agrave; une image">
  16. <span style="width: 100%; filter:Invert();">
  17. Invert
  18. appliqu&eacute; &agrave; du texte
  19. </span>
  20. </body>
  21. </html>

Inhaltsverzeichnis Haut

Exemple avec Mask()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  4. <head>
  5. <title>filter:9()</title>
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Bjarne Stroustrup">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Reply-to" content="john@millar.net">
  10. <meta name="Publisher" content="Millar">
  11. <meta name="Copyright" content="John Millar">
  12. <meta http-equiv="content-language" content="fr">
  13. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  14.  
  15. body {
  16. margin: 0px;
  17. padding: 16px;
  18. font-family: verdana;
  19. font-size: 18px;
  20. min-width: 723px;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000">
  27. <div style="width: 100%; filter:Mask(color=#8470ff);">
  28. Ceci est un texte avec Mask...
  29. </div>
  30. </body>
  31. </html>

Inhaltsverzeichnis Haut

Exemple avec Shadow()

  1. <!DOCTYPE html PUBLIC
  2. "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <head>
  5. <title>filter:10()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Author" lang="fr" content="Linus Torvalds">
  9. <meta name="Reply-to" content="robertwilhelm@bunsen.info">
  10. <meta name="Publisher" content="Bunsen">
  11. <meta name="Copyright" content="Robert Wilhelm Bunsen">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13.  
  14. body {
  15. margin: 0px;
  16. padding: 16px;
  17. font-family: verdana;
  18. font-size: 18px;
  19. min-width: 723px;
  20. }
  21. </style>
  22.  
  23. </head>
  24.  
  25. <body bgcolor="#FFFFFF" text="#000000">
  26. <h1>Exemple de filtre Shadow</h1>
  27. <div align="center">
  28. <img
  29. src="filter_10.gif"
  30. style="filter:Shadow(color=#8470ff)"
  31. width="165"
  32. height="16"
  33. alt="Exemple de filtre 10"
  34. border="0">
  35. </div>
  36. </body>
  37. </html>

Inhaltsverzeichnis Haut

Exemple avec Wave()

  1. <head>
  2. <title>filter:11()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Reply-to" content="diderot.denis@infobrol.edu">
  6. <meta name="Copyright" content="Denis Diderot">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8. </head>
  9. <body>
  10. <div style="width: 100%; filter:Wave(light=11, freq=29);">
  11. Ceci est un texte avec Wave...
  12. </div>
  13. </body>
  14. </html>

Inhaltsverzeichnis Haut

Exemple avec XRay()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:12()</title>
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="dijkstra.edsger@infobrol.tk">
  7. <meta name="Publisher" content="Dijkstra">
  8. <meta name="Copyright" content="Edsger Dijkstra">
  9. <meta http-equiv="content-language" content="fr">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11.  
  12. body {
  13. margin: 0px;
  14. padding: 16px;
  15. font-family: verdana;
  16. font-size: 18px;
  17. min-width: 723px;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body bgcolor="#FFFFFF" text="#000000">
  24. <h1>Exemple de filtre XRay</h1>
  25. <div align="center">
  26. <img
  27. src="filter_12.gif"
  28. style="filter:XRay()"
  29. width="81"
  30. height="135"
  31. alt="Exemple de filtre 12"
  32. border="0">
  33. </div>
  34. </body>
  35. </html>

Inhaltsverzeichnis Haut

Liste de filtres

#NomEffet
#NomEffet
0Alpha()effet de fusion de l'avant-plan et l'arrière-plan
1Blur()effet d'estompe
2Chroma()effet de couleur transparente
3DropShadow()effet d'ombrage
4FlipH()effet de symétrie sur axe horizontal
5FlipV()effet de symétrie sur axe vertical
6Glow()effet de bords flambants
7Gray()effet de nuances de gris
8Invert()effet d'inversion
9Mask()effet de masque transparent
10Shadow()effet d'ombres
11Wave()effet d'ondulation
12XRay()effet négatif photo

Afficher tous les filtres avec exemples.

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 27/02/2003, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/html-filtres-rf-wave.html/xhtml-rf-textarea.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Filtres : selfhtml (version 13/02/10)

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut