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. <head>
  2. <title>filter:0()</title>
  3. <meta http-equiv="pragma" content="no-cache">
  4. <meta name="Author" lang="fr" content="Alessandro Volta">
  5. <meta name="Reply-to" content="chevalier.michel@gmail.com">
  6. <meta name="Publisher" content="Chevalier">
  7. <meta name="Copyright" content="Michel Chevalier">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body>
  11. <h1>Exemple de filtre Alpha</h1>
  12. <div align="center">
  13. <img
  14. src="filter_0.gif"
  15. style="filter:Alpha(opacity=24, finishopacity=0, style=0)"
  16. width="192"
  17. height="179"
  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. <!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:1()</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="Reply-to" content="phil@zimmerman.org">
  9. <meta name="Copyright" content="Phil Zimmerman">
  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: 1px;
  15. padding: 7px;
  16. font-family: verdana;
  17. font-size: 11px;
  18. min-width: 656px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. <div style="width: 100%; filter:Blur(direction=180, strength=8);">
  28. Ceci est un texte avec Blur...
  29. </div>
  30. </body>
  31. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  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:2()</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="Reply-to" content="kahn.philippe@infobrol.int">
  9. <meta name="Publisher" content="Kahn">
  10. <meta name="Copyright" content="Philippe Kahn">
  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. width:100%;
  15. padding:3px;
  16. font-size:17pt;
  17. color:blue;
  18. filter:Chroma(color=#cd853f)">
  19. Exemples d'utilisation de filtres</p>
  20. </div>
  21.  
  22. <br />
  23. <br />
  24.  
  25. <tr valign="top">
  26. <td width="22%" height="218">
  27. The quick brown fox jumped over the lazy dog.
  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. </td>
  33. <td width="21%">
  34. &nbsp;
  35. </td>
  36. <td width="57%">
  37. The quick brown fox jumped over the lazy dog.
  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. </td>
  42. </tr>
  43. </table>
  44.  
  45. </body>
  46. </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. <head>
  4. <title>filter:3()</title>
  5. <meta name="Author" lang="fr" content="Alan Kay">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Copyright" content="Wilbur Wright">
  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: 1px;
  13. padding: 6px;
  14. font-family: verdana;
  15. font-size: 17px;
  16. min-width: 635px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <form>
  24. <textarea id="test_textarea"
  25. style="filter:DropShadow(offx=4, offy=3);"
  26. rows="9"
  27. cols="14">
  28. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  29. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  30. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  31. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  32. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  33. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  34. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  35. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  36. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  37. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  38. Maecenas porttitor congue massa. Fusce posuere, magna sed
  39. pulvinar ultricies, purus lectus malesuada libero, sit amet
  40. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  41. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  42. tristique senectus et netus et malesuada fames ac turpis
  43. egestas. Proin pharetra nonummy pede.
  44. type="button"
  45. name="btn1"
  46. value="Test"
  47. style="filter:DropShadow(offx=4, offy=3);" />
  48. </form>
  49. </body>
  50. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipH()

  1. <head>
  2. <title>filter:4()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Publisher" content="Rontgen">
  6. <meta name="Copyright" content="Wilhelm Rontgen">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8. </head>
  9. <body>
  10. <img
  11. style="filter:FlipH();"
  12. src="4Filter.jpg"
  13. align="center"
  14. width="108"
  15. height="75"
  16. alt="FlipH
  17. appliqu&eacute; &agrave; une image">
  18. <span style="width: 100%; filter:FlipH();">
  19. FlipH
  20. appliqu&eacute; &agrave; du texte
  21. </span>
  22. </body>
  23. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipV()

  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:5()</title>
  5. <meta name="Author" lang="fr" content="Thomas More">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="alex.bell@telephone.com">
  8. <meta name="Publisher" content="Bell">
  9. <meta name="Copyright" content="Alexandre Graham Bell">
  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: 1px;
  15. padding: 6px;
  16. font-family: verdana;
  17. font-size: 17px;
  18. min-width: 635px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <h1>Exemple de filtre FlipV</h1>
  26. <div align="center">
  27. <img
  28. src="filter_5.gif"
  29. style="filter:FlipV()"
  30. width="30"
  31. height="93"
  32. alt="Exemple de filtre 5"
  33. border="0">
  34. </div>
  35. </body>
  36. </html>

Inhaltsverzeichnis Haut

Exemple avec Glow()

  1. <head>
  2. <title>filter:6()</title>
  3. <meta http-equiv="pragma" content="no-cache">
  4. <meta name="Description" content="Utilisation des filtres, Demo">
  5. <meta name="Reply-to" content="tesla.nikola@infobrol.tk">
  6. <meta name="Publisher" content="Tesla">
  7. <meta name="Copyright" content="Nikola Tesla">
  8. </head>
  9. <body>
  10. <img
  11. style="filter:Glow(color=#cd853f);"
  12. src="6Filter.jpg"
  13. align="center"
  14. width="79"
  15. height="85"
  16. alt="Glow
  17. appliqu&eacute; &agrave; une image">
  18. <span style="width: 100%; filter:Glow(color=#cd853f);">
  19. Glow
  20. appliqu&eacute; &agrave; du texte
  21. </span>
  22. </body>
  23. </html>

Inhaltsverzeichnis Haut

Exemple avec Gray()

  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:7()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Reply-to" content="vonzeppelin.ferdinand@infobrol.biz">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <img
  12. style="filter:Gray();"
  13. src="7Filter.jpg"
  14. align="center"
  15. width="87"
  16. height="99"
  17. alt="Gray
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Gray();">
  20. Gray
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Inhaltsverzeichnis Haut

Exemple avec Invert()

  1. <head>
  2. <title>filter:8()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Author" lang="fr" content="Friedrich Engels">
  5. <meta name="Reply-to" content="hamming.richard@gmail.com">
  6. <meta name="Copyright" content="Richard Hamming">
  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. <div style="width: 100%; filter:Invert();">
  12. Ceci est un texte avec Invert...
  13. </div>
  14. </body>
  15. </html>

Inhaltsverzeichnis Haut

Exemple avec Mask()

  1. <head>
  2. <title>filter:9()</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="stirner.max@infobrol.pro">
  6. <meta name="Publisher" content="Stirner">
  7. <meta name="Copyright" content="Max Stirner">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <h1>Exemple de filtre Mask</h1>
  12. width:100%; padding:15px; font-size:31pt; color:red;
  13. filter:9(color=#cd853f)">
  14. Application de Mask(),
  15. texte avec Mask
  16. The quick brown fox jumped over the lazy dog.
  17. The quick brown fox jumped over the lazy dog.
  18. The quick brown fox jumped over the lazy dog.
  19. The quick brown fox jumped over the lazy dog.
  20. </div>
  21. </body>
  22. </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="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="edsger@dijkstra.info">
  7. <meta name="Copyright" content="Edsger Dijkstra">
  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: 1px;
  13. padding: 6px;
  14. font-family: verdana;
  15. font-size: 17px;
  16. min-width: 635px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. width:100%;
  24. padding:20px;
  25. font-size:38pt;
  26. color:blue;
  27. filter:Shadow(color=#cd853f)">
  28. Exemples d'utilisation de filtres</p>
  29. </div>
  30.  
  31. <br />
  32. <br />
  33.  
  34. <tr valign="top">
  35. <td width="22%" height="218">
  36. The quick brown fox jumped over the lazy dog.
  37. The quick brown fox jumped over the lazy dog.
  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. </td>
  42. <td width="21%">
  43. &nbsp;
  44. </td>
  45. <td width="57%">
  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. <!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:11()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Reply-to" content="bodin.jean@infobrol.pro">
  11. <meta name="Publisher" content="Bodin">
  12. <meta name="Copyright" content="Jean Bodin">
  13. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  14.  
  15. body {
  16. margin: 1px;
  17. padding: 7px;
  18. font-family: verdana;
  19. font-size: 11px;
  20. min-width: 656px;
  21. background:#FFFFFF;
  22. color:#000000;
  23. }
  24. </style>
  25.  
  26. </head>
  27.  
  28. <body>
  29. <div style="width: 100%; filter:Wave(light=73, freq=50);">
  30. Ceci est un texte avec Wave...
  31. </div>
  32. </body>
  33. </html>

Inhaltsverzeichnis Haut

Exemple avec XRay()

  1. <head>
  2. <title>filter:12()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Reply-to" content="pitrat.jacques@gmail.com">
  5. <meta name="Copyright" content="Jacques Pitrat">
  6. <meta http-equiv="content-language" content="fr">
  7. </head>
  8. <body>
  9. <img
  10. style="filter:XRay();"
  11. src="12Filter.jpg"
  12. align="center"
  13. width="119"
  14. height="97"
  15. alt="XRay
  16. appliqu&eacute; &agrave; une image">
  17. <span style="width: 100%; filter:XRay();">
  18. XRay
  19. appliqu&eacute; &agrave; du texte
  20. </span>
  21. </body>
  22. </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-mask.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