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

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

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. <?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:0()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="rontgen.wilhelm@infobrol.com">
  10. <meta name="Publisher" content="Rontgen">
  11. <meta name="Copyright" content="Wilhelm Rontgen">
  12. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  13. <body bgcolor="#FFFFFF" text="#000000">
  14. <h1>Exemple de filtre Alpha</h1>
  15. <div align="center">
  16. <img
  17. src="filter_0.gif"
  18. style="filter:Alpha(opacity=78, finishopacity=0, style=1)"
  19. width="10"
  20. height="95"
  21. alt="Exemple de filtre 0"
  22. border="0">
  23. </div>
  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. <head>
  4. <title>filter:1()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta http-equiv="pragma" content="no-cache">
  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="nygaard.kristen@gmail.com">
  10. <meta name="Publisher" content="Nygaard">
  11. <meta name="Copyright" content="Kristen Nygaard">
  12. <meta http-equiv="content-language" content="fr">
  13. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  14.  
  15. body {
  16. margin: 1px;
  17. padding: 3px;
  18. font-family: verdana;
  19. font-size: 8px;
  20. min-width: 662px;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000">
  27. <img
  28. style="filter:Blur(strength=14);"
  29. src="1Filter.jpg"
  30. align="center"
  31. width="115"
  32. height="98"
  33. alt="Blur
  34. appliqu&eacute; &agrave; une image">
  35. <span style="width: 100%; filter:Blur(strength=14);">
  36. Blur
  37. appliqu&eacute; &agrave; du texte
  38. </span>
  39. </body>
  40. </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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  4. <head>
  5. <title>filter:2()</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Author" lang="fr" content="Jules Lequier">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Copyright" content="Blaise Pascal">
  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. <img
  16. style="filter:Chroma(color=#cd853f);"
  17. src="2Filter.jpg"
  18. align="center"
  19. width="102"
  20. height="76"
  21. alt="Chroma
  22. appliqu&eacute; &agrave; une image">
  23. <span style="width: 100%; filter:Chroma(color=#cd853f);">
  24. Chroma
  25. appliqu&eacute; &agrave; du texte
  26. </span>
  27. </body>
  28. </html>

Contents Haut

Exemple avec DropShadow()

  1. <head>
  2. <title>filter:3()</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="curry.haskell@infobrol.tk">
  7. <meta name="Publisher" content="Curry">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <h1>Exemple de filtre DropShadow</h1>
  12. <div align="center">
  13. <img
  14. src="filter_3.gif"
  15. style="filter:DropShadow(offx=4, offy=4)"
  16. width="168"
  17. height="73"
  18. alt="Exemple de filtre 3"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Contents Haut

Exemple avec FlipH()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:4()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Author" lang="fr" content="Tycho Brahe">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Publisher" content="Canguilhem">
  8. <meta name="Copyright" content="Georges Canguilhem">
  9. <meta http-equiv="content-language" content="fr">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11.  
  12. body {
  13. margin: 1px;
  14. padding: 3px;
  15. font-family: verdana;
  16. font-size: 8px;
  17. min-width: 662px;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body bgcolor="#FFFFFF" text="#000000">
  24. <h1>Exemple de filtre FlipH</h1>
  25. <div align="center">
  26. <img
  27. src="filter_4.gif"
  28. style="filter:FlipH()"
  29. width="85"
  30. height="148"
  31. alt="Exemple de filtre 4"
  32. border="0">
  33. </div>
  34. </body>
  35. </html>

Contents Haut

Exemple avec FlipV()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:5()</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="Reply-to" content="meslier.jean@infobrol.int">
  7. <meta name="Publisher" content="Meslier">
  8. <meta name="Copyright" content="Jean Meslier">
  9. <meta http-equiv="content-language" content="fr">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. </head>
  12. <body>
  13. <h1>Exemple de filtre FlipV</h1>
  14. <div align="center">
  15. <img
  16. src="filter_5.gif"
  17. style="filter:FlipV()"
  18. width="93"
  19. height="104"
  20. alt="Exemple de filtre 5"
  21. border="0">
  22. </div>
  23. </body>
  24. </html>

Contents Haut

Exemple avec Glow()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:6()</title>
  4. <meta http-equiv="pragma" content="no-cache">
  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. width:100%;
  12. padding:7px;
  13. font-size:24pt;
  14. color:blue;
  15. filter:Glow(color=#cd853f, strength=3)">
  16. Exemples d'utilisation de filtres</p>
  17. </div>
  18.  
  19. <br />
  20. <br />
  21.  
  22. <tr valign="top">
  23. <td width="22%" height="218">
  24. The quick brown fox jumped over the lazy dog.
  25. The quick brown fox jumped over the lazy dog.
  26. The quick brown fox jumped over the lazy dog.
  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. 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. </td>
  39. </tr>
  40. </table>
  41.  
  42. </body>
  43. </html>

Contents 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  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="Albert Einstein">
  8. <meta name="Copyright" content="John William Mauchly">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10.  
  11. body {
  12. margin: 2px;
  13. padding: 11px;
  14. font-family: verdana;
  15. font-size: 14px;
  16. min-width: 651px;
  17. background:#FFFFFF;
  18. color:#000000;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body>
  25. <h1>Exemple de filtre Gray</h1>
  26. width:100%; padding:12px; font-size:25pt; color:red;
  27. filter:7()">
  28. Application de Gray(),
  29. texte avec Gray
  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>

Contents 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="Antoine Cournot">
  5. <meta name="Copyright" content="John Locke">
  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: 1px;
  11. padding: 3px;
  12. font-family: verdana;
  13. font-size: 8px;
  14. min-width: 662px;
  15. }
  16. </style>
  17.  
  18. </head>
  19.  
  20. <body bgcolor="#FFFFFF" text="#000000">
  21. <form>
  22. <textarea id="test_textarea"
  23. style="filter:Invert();"
  24. rows="12"
  25. cols="9">
  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:Invert();" />
  46. </form>
  47. </body>
  48. </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="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Claude Shannon">
  8. <meta name="Reply-to" content="meslier.jean@infobrol.int">
  9. <meta name="Copyright" content="Jean Meslier">
  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. <h1>Exemple de filtre Mask</h1>
  14. width:100%; padding:7px; font-size:30pt; color:red;
  15. filter:9(color=#e0eee0)">
  16. Application de Mask(),
  17. texte avec Mask
  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. The quick brown fox jumped over the lazy dog.
  22. </div>
  23. </body>
  24. </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="Reply-to" content="samuel@morse.info">
  9. <meta name="Publisher" content="Morse">
  10. <meta name="Copyright" content="Samuel Morse">
  11. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  12. </head>
  13. <body>
  14. <h1>Exemple de filtre Shadow</h1>
  15. width:100%; padding:14px; font-size:21pt; color:red;
  16. filter:10(color=#e0eee0)">
  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>

Contents 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="Georges Canguilhem">
  5. <meta name="Reply-to" content="rousseau.jean-jacques@gmail.com">
  6. <meta name="Publisher" content="Rousseau">
  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: 11px;
  13. font-family: verdana;
  14. font-size: 14px;
  15. min-width: 651px;
  16. background:#FFFFFF;
  17. color:#000000;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body>
  24. <div style="width: 100%; filter:Wave(freq=10, light=61, phase=25, strength=9);">
  25. Ceci est un texte avec Wave...
  26. </div>
  27. </body>
  28. </html>

Contents 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="Author" lang="fr" content="James Prescott Joule">
  5. <meta name="Reply-to" content="spengler.oswald@infobrol.int">
  6. <meta name="Publisher" content="Spengler">
  7. <meta name="Copyright" content="Oswald Spengler">
  8. <meta http-equiv="content-language" content="fr">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <img
  12. style="filter:XRay();"
  13. src="12Filter.jpg"
  14. align="center"
  15. width="103"
  16. height="113"
  17. alt="XRay
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:XRay();">
  20. XRay
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </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.

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 27/02/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/html-filtres-rf-invert.html/xhtml-rf-tfoot.html/

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Filtres : selfhtml (version 13/02/10)

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut