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 img.()

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

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="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Description" content="Utilisation des filtres, Demo">
  5. <meta name="Reply-to" content="joule.jamesprescott@gmail.com">
  6. <meta name="Publisher" content="Joule">
  7. <meta http-equiv="content-language" content="fr">
  8. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  9. <body bgcolor="#FFFFFF" text="#000000">
  10. <img
  11. style="filter:Alpha(opacity=45, finishopacity=0, style=1);"
  12. src="0Filter.jpg"
  13. align="center"
  14. width="106"
  15. height="84"
  16. alt="Alpha
  17. appliqu&eacute; &agrave; une image">
  18. <span style="width: 100%; filter:Alpha(opacity=45, finishopacity=0, style=1);">
  19. Alpha
  20. appliqu&eacute; &agrave; du texte
  21. </span>
  22. </body>
  23. </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="Author" lang="fr" content="Kenneth Thompson">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="postel.jon@infobrol.com">
  9. <meta name="Publisher" content="Postel">
  10. <meta name="Copyright" content="Jon Postel">
  11. <meta http-equiv="content-language" content="fr">
  12. </head>
  13. <body>
  14. <form>
  15. <textarea id="test_textarea"
  16. style="filter:Blur(direction=180, strength=9);"
  17. rows="13"
  18. cols="5">
  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. type="button"
  23. name="btn1"
  24. value="Test"
  25. style="filter:Blur(direction=180, strength=9);" />
  26. </form>
  27. </body>
  28. </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="Reply-to" content="carldavid.anderson@gmail.com">
  5. <meta name="Copyright" content="Anderson Carl David">
  6. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  7.  
  8. body {
  9. margin: 0px;
  10. padding: 8px;
  11. font-family: verdana;
  12. font-size: 18px;
  13. min-width: 720px;
  14. }
  15. </style>
  16.  
  17. </head>
  18.  
  19. <body bgcolor="#FFFFFF" text="#000000">
  20. <form>
  21. <textarea id="test_textarea"
  22. style="filter:Chroma(color=#8470ff);"
  23. rows="7"
  24. cols="3">
  25. The quick brown fox jumped over the lazy dog.
  26. type="button"
  27. name="btn1"
  28. value="Test"
  29. style="filter:Chroma(color=#8470ff);" />
  30. </form>
  31. </body>
  32. </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 http-equiv="pragma" content="no-cache">
  8. <meta name="Reply-to" content="joseph@fourier.info">
  9. <meta name="Publisher" content="Fourier">
  10. <meta name="Copyright" content="Joseph Fourier">
  11. <meta http-equiv="content-language" content="fr">
  12. </head>
  13. <body>
  14. width:100%;
  15. padding:16px;
  16. font-size:21pt;
  17. color:blue;
  18. filter:DropShadow(color=#cdc9a5)">
  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. </td>
  29. <td width="21%">
  30. &nbsp;
  31. </td>
  32. <td width="57%">
  33. The quick brown fox jumped over the lazy dog.
  34. The quick brown fox jumped over the lazy dog.
  35. </td>
  36. </tr>
  37. </table>
  38.  
  39. </body>
  40. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipH()

  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:4()</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="James Prescott Joule">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <h1>Exemple de filtre FlipH</h1>
  12. <div align="center">
  13. <img
  14. src="filter_4.gif"
  15. style="filter:FlipH()"
  16. width="190"
  17. height="17"
  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. <!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:5()</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="Publisher" content="Morton">
  9. <meta name="Copyright" content="Andrew Morton">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11.  
  12. body {
  13. margin: 0px;
  14. padding: 8px;
  15. font-family: verdana;
  16. font-size: 18px;
  17. min-width: 720px;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body bgcolor="#FFFFFF" text="#000000">
  24. <img
  25. style="filter:FlipV();"
  26. src="5Filter.jpg"
  27. align="center"
  28. width="118"
  29. height="117"
  30. alt="FlipV
  31. appliqu&eacute; &agrave; une image">
  32. <span style="width: 100%; filter:FlipV();">
  33. FlipV
  34. appliqu&eacute; &agrave; du texte
  35. </span>
  36. </body>
  37. </html>

Inhaltsverzeichnis Haut

Exemple avec Glow()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:6()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta name="Reply-to" content="brahe.tycho@gmail.com">
  7. <meta name="Publisher" content="Brahe">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body>
  11. <h1>Exemple de filtre Glow</h1>
  12. <div align="center">
  13. <img
  14. src="filter_6.gif"
  15. style="filter:Glow(color=#8470ff, strength=13)"
  16. width="174"
  17. height="59"
  18. alt="Exemple de filtre 6"
  19. border="0">
  20. </div>
  21. </body>
  22. </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 name="Reply-to" content="evangelista@torricelli.info">
  6. <meta name="Publisher" content="Torricelli">
  7. <meta name="Copyright" content="Evangelista Torricelli">
  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: 8px;
  14. font-family: verdana;
  15. font-size: 18px;
  16. min-width: 720px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <h1>Exemple de filtre Gray</h1>
  24. width:100%; padding:3px; font-size:28pt; color:red;
  25. filter:7()">
  26. Application de Gray(),
  27. texte avec Gray
  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 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="Gustave de Molinari">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="strachey.christopher@gmail.com">
  9. <meta name="Publisher" content="Strachey">
  10. <meta name="Copyright" content="Christopher Strachey">
  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. <form>
  15. <textarea id="test_textarea"
  16. style="filter:Invert();"
  17. rows="12"
  18. cols="17">
  19. The quick brown fox jumped over the lazy dog.
  20. type="button"
  21. name="btn1"
  22. value="Test"
  23. style="filter:Invert();" />
  24. </form>
  25. </body>
  26. </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="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Author" lang="fr" content="Oswald Spengler">
  6. <meta name="Reply-to" content="alanmathison@turing.org">
  7. <meta name="Copyright" content="Alan Mathison Turing">
  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: 19px;
  14. font-family: verdana;
  15. font-size: 14px;
  16. min-width: 775px;
  17. background:#FFFFFF;
  18. color:#000000;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body>
  25. <form>
  26. <textarea id="test_textarea"
  27. style="filter:Mask(color=#8470ff);"
  28. rows="5"
  29. cols="8">
  30. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  31. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  32. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  33. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  34. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  35. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  36. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  37. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  38. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  39. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  40. Maecenas porttitor congue massa. Fusce posuere, magna sed
  41. pulvinar ultricies, purus lectus malesuada libero, sit amet
  42. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  43. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  44. tristique senectus et netus et malesuada fames ac turpis
  45. egestas. Proin pharetra nonummy pede.
  46. type="button"
  47. name="btn1"
  48. value="Test"
  49. style="filter:Mask(color=#8470ff);" />
  50. </form>
  51. </body>
  52. </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 name="Author" lang="fr" content="Dennis Ritchie">
  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="dijkstra.edsger@infobrol.tk">
  11. <meta name="Copyright" content="Edsger Dijkstra">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13. </head>
  14. <body>
  15. <div style="width: 100%; filter:Shadow(color=#cdc9a5);">
  16. Ceci est un texte avec Shadow...
  17. </div>
  18. </body>
  19. </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 name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="zeiss.carl@infobrol.com">
  9. <meta name="Publisher" content="Zeiss">
  10. <meta name="Copyright" content="Carl Zeiss">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12.  
  13. body {
  14. margin: 0px;
  15. padding: 8px;
  16. font-family: verdana;
  17. font-size: 18px;
  18. min-width: 720px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <img
  26. style="filter:Wave(light=53, freq=21);"
  27. src="11Filter.jpg"
  28. align="center"
  29. width="120"
  30. height="103"
  31. alt="Wave
  32. appliqu&eacute; &agrave; une image">
  33. <span style="width: 100%; filter:Wave(light=53, freq=21);">
  34. Wave
  35. appliqu&eacute; &agrave; du texte
  36. </span>
  37. </body>
  38. </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. <head>
  4. <title>filter:12()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Author" lang="fr" content="Scott McNealy">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="wright.wilbur@infobrol.com">
  9. <meta name="Copyright" content="Wilbur Wright">
  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: 19px;
  16. font-family: verdana;
  17. font-size: 14px;
  18. min-width: 775px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. <h1>Exemple de filtre XRay</h1>
  28. <div align="center">
  29. <img
  30. src="filter_12.gif"
  31. style="filter:XRay()"
  32. width="20"
  33. height="19"
  34. alt="Exemple de filtre 12"
  35. border="0">
  36. </div>
  37. </body>
  38. </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-img.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