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

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

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. <head>
  4. <title>filter:0()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Author" lang="fr" content="Joseph Weizenbaum">
  7. <meta name="Reply-to" content="locke.john@infobrol.com">
  8. <meta name="Publisher" content="Locke">
  9. <meta name="Copyright" content="John Locke">
  10. <meta http-equiv="content-language" content="fr">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12. </head>
  13. <body>
  14. <img
  15. style="filter:Alpha(opacity=14, finishopacity=0, style=1);"
  16. src="0Filter.jpg"
  17. align="center"
  18. width="103"
  19. height="92"
  20. alt="Alpha
  21. appliqu&eacute; &agrave; une image">
  22. <span style="width: 100%; filter:Alpha(opacity=14, finishopacity=0, style=1);">
  23. Alpha
  24. appliqu&eacute; &agrave; du texte
  25. </span>
  26. </body>
  27. </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. <head>
  4. <title>filter:1()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Reply-to" content="gene@amdahl.org">
  7. <meta name="Publisher" content="Amdahl">
  8. <meta name="Copyright" content="Gene Amdahl">
  9. <meta http-equiv="content-language" content="fr">
  10. </head>
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <h1>Exemple de filtre Blur</h1>
  13. <div align="center">
  14. <img
  15. src="filter_1.gif"
  16. style="filter:Blur(direction=315, strength=8)"
  17. width="12"
  18. height="41"
  19. alt="Exemple de filtre 1"
  20. border="0">
  21. </div>
  22. </body>
  23. </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 name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Publisher" content="Bodin">
  7. <meta name="Copyright" content="Jean Bodin">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body>
  11. <img
  12. style="filter:Chroma(color=#DDBB99);"
  13. src="2Filter.jpg"
  14. align="center"
  15. width="79"
  16. height="87"
  17. alt="Chroma
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Chroma(color=#DDBB99);">
  20. Chroma
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </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 http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Author" lang="fr" content="Benjamin Constant">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="chevalier.michel@infobrol.tk">
  10. <meta name="Publisher" content="Chevalier">
  11. <meta name="Copyright" content="Michel Chevalier">
  12. <meta http-equiv="content-language" content="fr">
  13. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  14. </head>
  15. <body>
  16. <div style="width: 100%; filter:DropShadow(offx=3, offy=2);">
  17. Ceci est un texte avec DropShadow...
  18. </div>
  19. </body>
  20. </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 name="Author" lang="fr" content="Carl Zeiss">
  5. <meta name="Publisher" content="Kepler">
  6. <meta name="Copyright" content="Johannes Kepler">
  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. <h1>Exemple de filtre FlipH</h1>
  12. <div align="center">
  13. <img
  14. src="filter_4.gif"
  15. style="filter:FlipH()"
  16. width="82"
  17. height="132"
  18. alt="Exemple de filtre 4"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipV()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:5()</title>
  4. <meta http-equiv="pragma" content="no-cache">
  5. <meta name="Reply-to" content="bloch.ernst@infobrol.com">
  6. <meta name="Copyright" content="Ernst Bloch">
  7. </head>
  8. <body>
  9. <img
  10. style="filter:FlipV();"
  11. src="5Filter.jpg"
  12. align="center"
  13. width="103"
  14. height="120"
  15. alt="FlipV
  16. appliqu&eacute; &agrave; une image">
  17. <span style="width: 100%; filter:FlipV();">
  18. FlipV
  19. appliqu&eacute; &agrave; du texte
  20. </span>
  21. </body>
  22. </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 name="Author" lang="fr" content="Denis Diderot">
  8. <meta name="Reply-to" content="tavernier.guy@gmail.com">
  9. <meta name="Copyright" content="Guy Tavernier">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. width:100%;
  14. padding:13px;
  15. font-size:28pt;
  16. color:blue;
  17. filter:Glow(color=#DDBB99, strength=15)">
  18. Exemples d'utilisation de filtres</p>
  19. </div>
  20.  
  21. <br />
  22. <br />
  23.  
  24. <tr valign="top">
  25. <td width="22%" height="218">
  26. The quick brown fox jumped over the lazy dog.
  27. The quick brown fox jumped over the lazy dog.
  28. The quick brown fox jumped over the lazy dog.
  29. </td>
  30. <td width="21%">
  31. &nbsp;
  32. </td>
  33. <td width="57%">
  34. The quick brown fox jumped over the lazy dog.
  35. The quick brown fox jumped over the lazy dog.
  36. </td>
  37. </tr>
  38. </table>
  39.  
  40. </body>
  41. </html>

Inhaltsverzeichnis Haut

Exemple avec Gray()

  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:7()</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="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="amaduzzi.giovannicristofano@gmail.com">
  10. <meta name="Copyright" content="Giovanni Cristofano Amaduzzi">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12. </head>
  13. <body>
  14. <h1>Exemple de filtre Gray</h1>
  15. <div align="center">
  16. <img
  17. src="filter_7.gif"
  18. style="filter:Gray()"
  19. width="11"
  20. height="82"
  21. alt="Exemple de filtre 7"
  22. border="0">
  23. </div>
  24. </body>
  25. </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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  4. <head>
  5. <title>filter:8()</title>
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Friedrich Heinrich Jacobi">
  8. <meta name="Reply-to" content="pasteur.louis@infobrol.pro">
  9. <meta name="Copyright" content="Louis Pasteur">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <form>
  13. <textarea id="test_textarea"
  14. style="filter:Invert();"
  15. rows="6"
  16. cols="9">
  17. The quick brown fox jumped over the lazy dog.
  18. type="button"
  19. name="btn1"
  20. value="Test"
  21. style="filter:Invert();" />
  22. </form>
  23. </body>
  24. </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="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="taine.hippolyte@infobrol.com">
  8. <meta name="Copyright" content="Hippolyte Taine">
  9. <meta http-equiv="content-language" content="fr">
  10. </head>
  11. <body>
  12. <form>
  13. <textarea id="test_textarea"
  14. style="filter:Mask(color=#e0eee0);"
  15. rows="14"
  16. cols="8">
  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. type="button"
  21. name="btn1"
  22. value="Test"
  23. style="filter:Mask(color=#e0eee0);" />
  24. </form>
  25. </body>
  26. </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 name="Reply-to" content="cournot.antoine@infobrol.com">
  5. <meta name="Copyright" content="Antoine Cournot">
  6. <meta http-equiv="content-language" content="fr">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8.  
  9. body {
  10. margin: 3px;
  11. padding: 12px;
  12. font-family: verdana;
  13. font-size: 9px;
  14. min-width: 610px;
  15. }
  16. </style>
  17.  
  18. </head>
  19.  
  20. <body bgcolor="#FFFFFF" text="#000000">
  21. <form>
  22. <textarea id="test_textarea"
  23. style="filter:Shadow(color=#e0eee0);"
  24. rows="6"
  25. cols="7">
  26. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  27. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  28. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  29. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  30. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  31. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  32. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  33. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  34. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  35. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  36. Maecenas porttitor congue massa. Fusce posuere, magna sed
  37. pulvinar ultricies, purus lectus malesuada libero, sit amet
  38. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  39. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  40. tristique senectus et netus et malesuada fames ac turpis
  41. egestas. Proin pharetra nonummy pede.
  42. type="button"
  43. name="btn1"
  44. value="Test"
  45. style="filter:Shadow(color=#e0eee0);" />
  46. </form>
  47. </body>
  48. </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 name="Author" lang="fr" content="Ludwig Wittgenstein">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8.  
  9. body {
  10. margin: 3px;
  11. padding: 12px;
  12. font-family: verdana;
  13. font-size: 9px;
  14. min-width: 610px;
  15. }
  16. </style>
  17.  
  18. </head>
  19.  
  20. <body bgcolor="#FFFFFF" text="#000000">
  21. <h1>Exemple de filtre Wave</h1>
  22. width:100%; padding:15px; font-size:41pt; color:red;
  23. filter:11(freq=38, light=67, phase=42, strength=4)">
  24. Application de Wave(),
  25. texte avec Wave
  26. The quick brown fox jumped over the lazy dog.
  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. </div>
  31. </body>
  32. </html>

Inhaltsverzeichnis Haut

Exemple avec XRay()

  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: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="Author" lang="fr" content="Niels Bohr">
  9. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Publisher" content="Abrial">
  11. <meta name="Copyright" content="Jean-Raymond Abrial">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13.  
  14. body {
  15. margin: 3px;
  16. padding: 12px;
  17. font-family: verdana;
  18. font-size: 9px;
  19. min-width: 610px;
  20. }
  21. </style>
  22.  
  23. </head>
  24.  
  25. <body bgcolor="#FFFFFF" text="#000000">
  26. <h1>Exemple de filtre XRay</h1>
  27. <div align="center">
  28. <img
  29. src="filter_12.gif"
  30. style="filter:XRay()"
  31. width="176"
  32. height="192"
  33. alt="Exemple de filtre 12"
  34. border="0">
  35. </div>
  36. </body>
  37. </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-table.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