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

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

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. <head>
  3. <title>filter:0()</title>
  4. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  5. <meta name="Reply-to" content="millar.john@gmail.com">
  6. <meta name="Publisher" content="Millar">
  7. <meta name="Copyright" content="John Millar">
  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: 3px;
  13. padding: 11px;
  14. font-family: verdana;
  15. font-size: 14px;
  16. min-width: 666px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <img
  24. style="filter:Alpha(opacity=86, finishopacity=0, style=1);"
  25. src="0Filter.jpg"
  26. align="center"
  27. width="113"
  28. height="108"
  29. alt="Alpha
  30. appliqu&eacute; &agrave; une image">
  31. <span style="width: 100%; filter:Alpha(opacity=86, finishopacity=0, style=1);">
  32. Alpha
  33. appliqu&eacute; &agrave; du texte
  34. </span>
  35. </body>
  36. </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 http-equiv="pragma" content="no-cache">
  6. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  7. <meta name="Reply-to" content="john@vonneumann.info">
  8. <meta name="Publisher" content="von Neumann">
  9. <meta name="Copyright" content="John von Neumann">
  10. <meta http-equiv="content-language" content="fr">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. <form>
  14. <textarea id="test_textarea"
  15. style="filter:Blur(strength=20);"
  16. rows="9"
  17. cols="6">
  18. The quick brown fox jumped over the lazy dog.
  19. type="button"
  20. name="btn1"
  21. value="Test"
  22. style="filter:Blur(strength=20);" />
  23. </form>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:2()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta name="Author" lang="fr" content="Andrew Stuart Tanenbaum">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="nicolas@decondorcet.net">
  9. <meta name="Publisher" content="de Condorcet">
  10. <meta name="Copyright" content="Nicolas de Condorcet">
  11. <meta http-equiv="content-language" content="fr">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13.  
  14. body {
  15. margin: 2px;
  16. padding: 14px;
  17. font-family: verdana;
  18. font-size: 8px;
  19. min-width: 631px;
  20. background:#FFFFFF;
  21. color:#000000;
  22. }
  23. </style>
  24.  
  25. </head>
  26.  
  27. <body>
  28. <h1>Exemple de filtre Chroma</h1>
  29. width:100%; padding:15px; font-size:31pt; color:red;
  30. filter:2(color=#cdc9a5)">
  31. Application de Chroma(),
  32. texte avec Chroma
  33. The quick brown fox jumped over the lazy dog.
  34. The quick brown fox jumped over the lazy dog.
  35. The quick brown fox jumped over the lazy dog.
  36. The quick brown fox jumped over the lazy dog.
  37. </div>
  38. </body>
  39. </html>

Inhaltsverzeichnis Haut

Exemple avec DropShadow()

  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:3()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Author" lang="fr" content="George Berkeley">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Copyright" content="Jacques-Yves Cousteau">
  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: 3px;
  15. padding: 11px;
  16. font-family: verdana;
  17. font-size: 14px;
  18. min-width: 666px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <h1>Exemple de filtre DropShadow</h1>
  26. width:100%; padding:20px; font-size:14pt; color:red;
  27. filter:3(color=#cdc9a5, offx=4, offy=2)">
  28. Application de DropShadow(),
  29. texte avec DropShadow
  30. The quick brown fox jumped over the lazy dog.
  31. The quick brown fox jumped over the lazy dog.
  32. The quick brown fox jumped over the lazy dog.
  33. The quick brown fox jumped over the lazy dog.
  34. </div>
  35. </body>
  36. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipH()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:4()</title>
  4. <meta name="Reply-to" content="claude@shannon.org">
  5. <meta name="Copyright" content="Claude Shannon">
  6. <meta http-equiv="content-language" content="fr">
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <img
  10. style="filter:FlipH();"
  11. src="4Filter.jpg"
  12. align="center"
  13. width="82"
  14. height="94"
  15. alt="FlipH
  16. appliqu&eacute; &agrave; une image">
  17. <span style="width: 100%; filter:FlipH();">
  18. FlipH
  19. appliqu&eacute; &agrave; du texte
  20. </span>
  21. </body>
  22. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipV()

  1. <head>
  2. <title>filter:5()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Author" lang="fr" content="Venkat Subramaniam">
  5. <meta name="Reply-to" content="kleene.stephencole@infobrol.edu">
  6. <meta name="Publisher" content="Kleene">
  7. <meta name="Copyright" content="Stephen Cole Kleene">
  8. </head>
  9. <body>
  10. <h1>Exemple de filtre FlipV</h1>
  11. <div align="center">
  12. <img
  13. src="filter_5.gif"
  14. style="filter:FlipV()"
  15. width="95"
  16. height="81"
  17. alt="Exemple de filtre 5"
  18. border="0">
  19. </div>
  20. </body>
  21. </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 name="Author" lang="fr" content="Bjarne Stroustrup">
  7. <meta name="Reply-to" content="simon.herbert@infobrol.int">
  8. <meta name="Copyright" content="Herbert Simon">
  9. <meta http-equiv="content-language" content="fr">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <img
  13. style="filter:Glow(color=#cdc9a5, strength=15);"
  14. src="6Filter.jpg"
  15. align="center"
  16. width="95"
  17. height="102"
  18. alt="Glow
  19. appliqu&eacute; &agrave; une image">
  20. <span style="width: 100%; filter:Glow(color=#cdc9a5, strength=15);">
  21. Glow
  22. appliqu&eacute; &agrave; du texte
  23. </span>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Gray()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:7()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta name="Author" lang="fr" content="Jeanne Hersch">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="engels.friedrich@infobrol.int">
  9. <meta name="Copyright" content="Friedrich Engels">
  10. </head>
  11. <body>
  12. <div style="width: 100%; filter:Gray();">
  13. Ceci est un texte avec Gray...
  14. </div>
  15. </body>
  16. </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 http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="James Prescott Joule">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="douglas@lenat.org">
  10. <meta name="Copyright" content="Douglas Lenat">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. <div style="width: 100%; filter:Invert();">
  14. Ceci est un texte avec Invert...
  15. </div>
  16. </body>
  17. </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. <head>
  4. <title>filter:9()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Author" lang="fr" content="Benjamin Tucker">
  7. <meta name="Reply-to" content="moore.gordonearle@infobrol.int">
  8. <meta name="Copyright" content="Gordon Earle Moore">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. </head>
  11. <body>
  12. <img
  13. style="filter:Mask(color=#cdc9a5);"
  14. src="9Filter.jpg"
  15. align="center"
  16. width="106"
  17. height="79"
  18. alt="Mask
  19. appliqu&eacute; &agrave; une image">
  20. <span style="width: 100%; filter:Mask(color=#cdc9a5);">
  21. Mask
  22. appliqu&eacute; &agrave; du texte
  23. </span>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Shadow()

  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: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="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Reply-to" content="heinrichjacobi.friedrich@infobrol.tk">
  10. <meta name="Copyright" content="Friedrich Heinrich Jacobi">
  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 Shadow</h1>
  15. width:100%; padding:19px; font-size:42pt; color:red;
  16. filter:10(direction=270, color=#cdc9a5)">
  17. Application de Shadow(),
  18. texte avec Shadow
  19. The quick brown fox jumped over the lazy dog.
  20. The quick brown fox jumped over the lazy dog.
  21. The quick brown fox jumped over the lazy dog.
  22. The quick brown fox jumped over the lazy dog.
  23. </div>
  24. </body>
  25. </html>

Inhaltsverzeichnis Haut

Exemple avec Wave()

  1. <head>
  2. <title>filter:11()</title>
  3. <meta http-equiv="pragma" content="no-cache">
  4. <meta name="Author" lang="fr" content="Rudolf Diesel">
  5. <meta name="Reply-to" content="feuerbach.ludwig@gmail.com">
  6. <meta name="Copyright" content="Ludwig Feuerbach">
  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: 2px;
  12. padding: 14px;
  13. font-family: verdana;
  14. font-size: 8px;
  15. min-width: 631px;
  16. background:#FFFFFF;
  17. color:#000000;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body>
  24. <h1>Exemple de filtre Wave</h1>
  25. <div align="center">
  26. <img
  27. src="filter_11.gif"
  28. style="filter:Wave(light=24, freq=32)"
  29. width="23"
  30. height="89"
  31. alt="Exemple de filtre 11"
  32. border="0">
  33. </div>
  34. </body>
  35. </html>

Inhaltsverzeichnis Haut

Exemple avec XRay()

  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:12()</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="Reply-to" content="euler.leonhard@infobrol.com">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body>
  13. <img
  14. style="filter:XRay();"
  15. src="12Filter.jpg"
  16. align="center"
  17. width="98"
  18. height="80"
  19. alt="XRay
  20. appliqu&eacute; &agrave; une image">
  21. <span style="width: 100%; filter:XRay();">
  22. XRay
  23. appliqu&eacute; &agrave; du texte
  24. </span>
  25. </body>
  26. </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-thead.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