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 body()

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

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. <!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:0()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Copyright" content="Kristen Nygaard">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <h1>Exemple de filtre Alpha</h1>
  12. <div align="center">
  13. <img
  14. src="filter_0.gif"
  15. style="filter:Alpha(opacity=30, finishopacity=0, style=2)"
  16. width="33"
  17. height="99"
  18. alt="Exemple de filtre 0"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Inhaltsverzeichnis Haut

Exemple avec Blur()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:1()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Reply-to" content="scot.duns@infobrol.biz">
  6. <meta name="Copyright" content="Duns Scot">
  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(direction=0, strength=0);"
  13. src="1Filter.jpg"
  14. align="center"
  15. width="116"
  16. height="80"
  17. alt="Blur
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Blur(direction=0, strength=0);">
  20. Blur
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  1. <head>
  2. <title>filter:2()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Author" lang="fr" content="Christian Doppler">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="geraldjay@sussman.net">
  7. <meta name="Copyright" content="Gerald Jay Sussman">
  8. <meta http-equiv="content-language" content="fr">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <img
  12. style="filter:Chroma(color=#8470ff);"
  13. src="2Filter.jpg"
  14. align="center"
  15. width="116"
  16. height="107"
  17. alt="Chroma
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Chroma(color=#8470ff);">
  20. Chroma
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Inhaltsverzeichnis Haut

Exemple avec DropShadow()

  1. <head>
  2. <title>filter:3()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta http-equiv="content-language" content="fr">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <form>
  10. <textarea id="test_textarea"
  11. style="filter:DropShadow(color=#8470ff, offx=4, offy=3);"
  12. rows="19"
  13. cols="7">
  14. The quick brown fox jumped over the lazy dog.
  15. The quick brown fox jumped over the lazy dog.
  16. The quick brown fox jumped over the lazy dog.
  17. type="button"
  18. name="btn1"
  19. value="Test"
  20. style="filter:DropShadow(color=#8470ff, offx=4, offy=3);" />
  21. </form>
  22. </body>
  23. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipH()

  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:4()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Reply-to" content="boole.george@infobrol.pro">
  9. <meta name="Copyright" content="George Boole">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. <h1>Exemple de filtre FlipH</h1>
  14. <div align="center">
  15. <img
  16. src="filter_4.gif"
  17. style="filter:FlipH()"
  18. width="15"
  19. height="59"
  20. alt="Exemple de filtre 4"
  21. border="0">
  22. </div>
  23. </body>
  24. </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 name="Author" lang="fr" content="Giacomo Leopardi">
  8. <meta name="Reply-to" content="diderot.denis@infobrol.edu">
  9. <meta name="Publisher" content="Diderot">
  10. <meta name="Copyright" content="Denis Diderot">
  11. <meta http-equiv="content-language" content="fr">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13. <body bgcolor="#FFFFFF" text="#000000">
  14. <h1>Exemple de filtre FlipV</h1>
  15. <div align="center">
  16. <img
  17. src="filter_5.gif"
  18. style="filter:FlipV()"
  19. width="128"
  20. height="111"
  21. alt="Exemple de filtre 5"
  22. border="0">
  23. </div>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Glow()

  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:6()</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="Claude Shannon">
  9. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Reply-to" content="wirth.niklaus@infobrol.com">
  11. <meta name="Copyright" content="Niklaus Wirth">
  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: 3px;
  17. padding: 19px;
  18. font-family: verdana;
  19. font-size: 14px;
  20. min-width: 747px;
  21. background:#FFFFFF;
  22. color:#000000;
  23. }
  24. </style>
  25.  
  26. </head>
  27.  
  28. <body>
  29. width:100%;
  30. padding:8px;
  31. font-size:14pt;
  32. color:blue;
  33. filter:Glow(color=#8470ff)">
  34. Exemples d'utilisation de filtres</p>
  35. </div>
  36.  
  37. <br />
  38. <br />
  39.  
  40. <tr valign="top">
  41. <td width="22%" height="218">
  42. The quick brown fox jumped over the lazy dog.
  43. The quick brown fox jumped over the lazy dog.
  44. The quick brown fox jumped over the lazy dog.
  45. </td>
  46. <td width="21%">
  47. &nbsp;
  48. </td>
  49. <td width="57%">
  50. The quick brown fox jumped over the lazy dog.
  51. The quick brown fox jumped over the lazy dog.
  52. </td>
  53. </tr>
  54. </table>
  55.  
  56. </body>
  57. </html>

Inhaltsverzeichnis Haut

Exemple avec Gray()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:7()</title>
  4. <meta name="Description" content="Utilisation des filtres, Demo">
  5. <meta name="Reply-to" content="donald@knuth.net">
  6. <meta name="Copyright" content="Donald Knuth">
  7. <meta http-equiv="content-language" content="fr">
  8. </head>
  9. <body>
  10. <img
  11. style="filter:Gray();"
  12. src="7Filter.jpg"
  13. align="center"
  14. width="100"
  15. height="75"
  16. alt="Gray
  17. appliqu&eacute; &agrave; une image">
  18. <span style="width: 100%; filter:Gray();">
  19. Gray
  20. appliqu&eacute; &agrave; du texte
  21. </span>
  22. </body>
  23. </html>

Inhaltsverzeichnis Haut

Exemple avec Invert()

  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:8()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Author" lang="fr" content="Niels Bohr">
  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="wernher.vonbraun@gmail.com">
  10. <meta name="Copyright" content="von Braun Wernher">
  11. <meta http-equiv="content-language" content="fr">
  12. </head>
  13. <body bgcolor="#FFFFFF" text="#000000">
  14. <h1>Exemple de filtre Invert</h1>
  15. <div align="center">
  16. <img
  17. src="filter_8.gif"
  18. style="filter:Invert()"
  19. width="26"
  20. height="98"
  21. alt="Exemple de filtre 8"
  22. border="0">
  23. </div>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Mask()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:9()</title>
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="pierre@duhem.net">
  7. <meta name="Copyright" content="Pierre Duhem">
  8. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  9.  
  10. body {
  11. margin: 3px;
  12. padding: 19px;
  13. font-family: verdana;
  14. font-size: 14px;
  15. min-width: 747px;
  16. background:#FFFFFF;
  17. color:#000000;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body>
  24. <img
  25. style="filter:Mask(color=#8470ff);"
  26. src="9Filter.jpg"
  27. align="center"
  28. width="114"
  29. height="80"
  30. alt="Mask
  31. appliqu&eacute; &agrave; une image">
  32. <span style="width: 100%; filter:Mask(color=#8470ff);">
  33. Mask
  34. appliqu&eacute; &agrave; du texte
  35. </span>
  36. </body>
  37. </html>

Inhaltsverzeichnis Haut

Exemple avec Shadow()

  1. <head>
  2. <title>filter:10()</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="fahrenheit.gabriel@gmail.com">
  6. <meta name="Copyright" content="Gabriel Fahrenheit">
  7. <meta http-equiv="content-language" content="fr">
  8. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  9.  
  10. body {
  11. margin: 3px;
  12. padding: 19px;
  13. font-family: verdana;
  14. font-size: 14px;
  15. min-width: 747px;
  16. background:#FFFFFF;
  17. color:#000000;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body>
  24. width:100%;
  25. padding:11px;
  26. font-size:37pt;
  27. color:blue;
  28. filter:Shadow(color=#8470ff)">
  29. Exemples d'utilisation de filtres</p>
  30. </div>
  31.  
  32. <br />
  33. <br />
  34.  
  35. <tr valign="top">
  36. <td width="22%" height="218">
  37. The quick brown fox jumped over the lazy dog.
  38. The quick brown fox jumped over the lazy dog.
  39. </td>
  40. <td width="21%">
  41. &nbsp;
  42. </td>
  43. <td width="57%">
  44. The quick brown fox jumped over the lazy dog.
  45. The quick brown fox jumped over the lazy dog.
  46. The quick brown fox jumped over the lazy dog.
  47. The quick brown fox jumped over the lazy dog.
  48. </td>
  49. </tr>
  50. </table>
  51.  
  52. </body>
  53. </html>

Inhaltsverzeichnis Haut

Exemple avec Wave()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:11()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Author" lang="fr" content="Alexei Abrikosov">
  6. <meta name="Reply-to" content="albert@einstein.net">
  7. <meta name="Copyright" content="Albert Einstein">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <form>
  12. <textarea id="test_textarea"
  13. style="filter:Wave(freq=9, light=6, phase=70, strength=6);"
  14. rows="7"
  15. cols="18">
  16. The quick brown fox jumped over the lazy dog.
  17. type="button"
  18. name="btn1"
  19. value="Test"
  20. style="filter:Wave(freq=9, light=6, phase=70, strength=6);" />
  21. </form>
  22. </body>
  23. </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="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Reply-to" content="joule.jamesprescott@infobrol.tk">
  6. <meta name="Copyright" content="James Prescott Joule">
  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:XRay();"
  13. src="12Filter.jpg"
  14. align="center"
  15. width="87"
  16. height="107"
  17. alt="XRay
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:XRay();">
  20. XRay
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </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-gray.html/xhtml-rf-marquee.html/xhtml-rf-body.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