No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Filtre button()

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

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();">

Contents 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 http-equiv="pragma" content="no-cache">
  5. <meta name="Author" lang="fr" content="Isaac Newton">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="kahn.philippe@infobrol.edu">
  9. <meta name="Copyright" content="Philippe Kahn">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <img
  13. style="filter:Alpha(opacity=84, finishopacity=0, style=2);"
  14. src="0Filter.jpg"
  15. align="center"
  16. width="101"
  17. height="114"
  18. alt="Alpha
  19. appliqu&eacute; &agrave; une image">
  20. <span style="width: 100%; filter:Alpha(opacity=84, finishopacity=0, style=2);">
  21. Alpha
  22. appliqu&eacute; &agrave; du texte
  23. </span>
  24. </body>
  25. </html>

Contents 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="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Gordon Earle Moore">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Reply-to" content="miguel@deunamuno.info">
  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. <form>
  15. <textarea id="test_textarea"
  16. style="filter:Blur(strength=15);"
  17. rows="3"
  18. cols="12">
  19. The quick brown fox jumped over the lazy dog.
  20. type="button"
  21. name="btn1"
  22. value="Test"
  23. style="filter:Blur(strength=15);" />
  24. </form>
  25. </body>
  26. </html>

Contents Haut

Exemple avec Chroma()

  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:2()</title>
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta name="Author" lang="fr" content="Carl Zeiss">
  7. <meta name="Reply-to" content="weber.max@infobrol.edu">
  8. <meta name="Publisher" content="Weber">
  9. <meta name="Copyright" content="Max Weber">
  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: 12px;
  16. font-family: verdana;
  17. font-size: 8px;
  18. min-width: 745px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. <form>
  28. <textarea id="test_textarea"
  29. style="filter:Chroma(color=#cdc9a5);"
  30. rows="18"
  31. cols="7">
  32. The quick brown fox jumped over the lazy dog.
  33. type="button"
  34. name="btn1"
  35. value="Test"
  36. style="filter:Chroma(color=#cdc9a5);" />
  37. </form>
  38. </body>
  39. </html>

Contents 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 http-equiv="pragma" content="no-cache">
  8. <meta name="Reply-to" content="chomsky.noam@infobrol.pro">
  9. <meta name="Copyright" content="Noam Chomsky">
  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: 12px;
  16. font-family: verdana;
  17. font-size: 8px;
  18. min-width: 745px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. <img
  28. style="filter:DropShadow(color=#DDBB99);"
  29. src="3Filter.jpg"
  30. align="center"
  31. width="111"
  32. height="78"
  33. alt="DropShadow
  34. appliqu&eacute; &agrave; une image">
  35. <span style="width: 100%; filter:DropShadow(color=#DDBB99);">
  36. DropShadow
  37. appliqu&eacute; &agrave; du texte
  38. </span>
  39. </body>
  40. </html>

Contents 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 name="Author" lang="fr" content="Hippolyte Taine">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="clark.david@infobrol.pro">
  9. <meta name="Publisher" content="Clark">
  10. <meta name="Copyright" content="David Clark">
  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: 0px;
  16. padding: 12px;
  17. font-family: verdana;
  18. font-size: 8px;
  19. min-width: 745px;
  20. background:#FFFFFF;
  21. color:#000000;
  22. }
  23. </style>
  24.  
  25. </head>
  26.  
  27. <body>
  28. <img
  29. style="filter:FlipH();"
  30. src="4Filter.jpg"
  31. align="center"
  32. width="98"
  33. height="81"
  34. alt="FlipH
  35. appliqu&eacute; &agrave; une image">
  36. <span style="width: 100%; filter:FlipH();">
  37. FlipH
  38. appliqu&eacute; &agrave; du texte
  39. </span>
  40. </body>
  41. </html>

Contents 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 http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Publisher" content="Schopenhauer">
  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: 12px;
  14. font-family: verdana;
  15. font-size: 8px;
  16. min-width: 745px;
  17. background:#FFFFFF;
  18. color:#000000;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body>
  25. <h1>Exemple de filtre FlipV</h1>
  26. <div align="center">
  27. <img
  28. src="filter_5.gif"
  29. style="filter:FlipV()"
  30. width="100"
  31. height="19"
  32. alt="Exemple de filtre 5"
  33. border="0">
  34. </div>
  35. </body>
  36. </html>

Contents 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 name="Author" lang="fr" content="Gaspard-Gustave Coriolis">
  6. <meta name="Reply-to" content="franklin.benjamin@gmail.com">
  7. <meta name="Copyright" content="Benjamin Franklin">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body>
  11. <img
  12. style="filter:Glow(color=#DDBB99);"
  13. src="6Filter.jpg"
  14. align="center"
  15. width="111"
  16. height="103"
  17. alt="Glow
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Glow(color=#DDBB99);">
  20. Glow
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Contents 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="Author" lang="fr" content="Hippolyte Taine">
  8. <meta name="Reply-to" content="jean-raymond@abrial.net">
  9. <meta name="Publisher" content="Abrial">
  10. <meta name="Copyright" content="Jean-Raymond Abrial">
  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:16px;
  16. font-size:44pt;
  17. color:blue;
  18. filter:Gray()">
  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. </td>
  31. <td width="21%">
  32. &nbsp;
  33. </td>
  34. <td width="57%">
  35. The quick brown fox jumped over the lazy dog.
  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. </td>
  41. </tr>
  42. </table>
  43.  
  44. </body>
  45. </html>

Contents Haut

Exemple avec Invert()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:8()</title>
  4. <meta name="Description" content="Utilisation des filtres, Demo">
  5. <meta name="Reply-to" content="hegel.georg@infobrol.biz">
  6. <meta name="Publisher" content="Hegel">
  7. <meta name="Copyright" content="Georg Hegel">
  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: 19px;
  14. font-family: verdana;
  15. font-size: 16px;
  16. min-width: 700px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. width:100%;
  24. padding:10px;
  25. font-size:28pt;
  26. color:blue;
  27. filter:Invert()">
  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. </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. The quick brown fox jumped over the lazy dog.
  49. </td>
  50. </tr>
  51. </table>
  52.  
  53. </body>
  54. </html>

Contents 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="pragma" content="no-cache">
  6. <meta name="Author" lang="fr" content="Alexander Fleming">
  7. <meta name="Reply-to" content="guillaume@dechampeaux.net">
  8. <meta name="Publisher" content="de Champeaux">
  9. <meta name="Copyright" content="Guillaume de Champeaux">
  10. </head>
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <h1>Exemple de filtre Mask</h1>
  13. width:100%; padding:16px; font-size:36pt; color:red;
  14. filter:9(color=#cdc9a5)">
  15. Application de Mask(),
  16. texte avec Mask
  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. The quick brown fox jumped over the lazy dog.
  21. </div>
  22. </body>
  23. </html>

Contents Haut

Exemple avec Shadow()

  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: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="charles@dunoyer.net">
  10. <meta name="Copyright" content="Charles Dunoyer">
  11. <meta http-equiv="content-language" content="fr">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13. </head>
  14. <body>
  15. <form>
  16. <textarea id="test_textarea"
  17. style="filter:Shadow(color=#DDBB99);"
  18. rows="7"
  19. cols="18">
  20. The quick brown fox jumped over the lazy dog.
  21. type="button"
  22. name="btn1"
  23. value="Test"
  24. style="filter:Shadow(color=#DDBB99);" />
  25. </form>
  26. </body>
  27. </html>

Contents 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="lenat.douglas@gmail.com">
  9. <meta name="Copyright" content="Douglas Lenat">
  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: 12px;
  16. font-family: verdana;
  17. font-size: 8px;
  18. min-width: 745px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. width:100%;
  28. padding:4px;
  29. font-size:47pt;
  30. color:blue;
  31. filter:Wave(freq=31, light=10, phase=91, strength=10)">
  32. Exemples d'utilisation de filtres</p>
  33. </div>
  34.  
  35. <br />
  36. <br />
  37.  
  38. <tr valign="top">
  39. <td width="22%" height="218">
  40. The quick brown fox jumped over the lazy dog.
  41. The quick brown fox jumped over the lazy dog.
  42. The quick brown fox jumped over the lazy dog.
  43. The quick brown fox jumped over the lazy dog.
  44. </td>
  45. <td width="21%">
  46. &nbsp;
  47. </td>
  48. <td width="57%">
  49. The quick brown fox jumped over the lazy dog.
  50. The quick brown fox jumped over the lazy dog.
  51. The quick brown fox jumped over the lazy dog.
  52. The quick brown fox jumped over the lazy dog.
  53. </td>
  54. </tr>
  55. </table>
  56.  
  57. </body>
  58. </html>

Contents 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 name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="clark.david@infobrol.pro">
  9. <meta name="Copyright" content="David Clark">
  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="92"
  18. height="95"
  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>

Contents 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.

Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph