Filtre span()

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

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

Table des matières 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 name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="max@weber.org">
  8. <meta name="Copyright" content="Max Weber">
  9. </head>
  10. <body>
  11. <h1>Exemple de filtre Alpha</h1>
  12. <div align="center">
  13. <img
  14. src="filter_0.gif"
  15. style="filter:Alpha(opacity=22, finishopacity=0, style=2)"
  16. width="35"
  17. height="147"
  18. alt="Exemple de filtre 0"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Table des matières Haut

Exemple avec Blur()

  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:1()</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="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Reply-to" content="joule.jamesprescott@infobrol.pro">
  11. <meta name="Publisher" content="Joule">
  12. <meta name="Copyright" content="James Prescott Joule">
  13. </head>
  14. <body>
  15. <img
  16. style="filter:Blur(strength=8);"
  17. src="1Filter.jpg"
  18. align="center"
  19. width="83"
  20. height="97"
  21. alt="Blur
  22. appliqu&eacute; &agrave; une image">
  23. <span style="width: 100%; filter:Blur(strength=8);">
  24. Blur
  25. appliqu&eacute; &agrave; du texte
  26. </span>
  27. </body>
  28. </html>

Table des matières Haut

Exemple avec Chroma()

  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:2()</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="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Reply-to" content="locke.john@gmail.com">
  11. <meta name="Copyright" content="John Locke">
  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: 2px;
  17. padding: 20px;
  18. font-family: verdana;
  19. font-size: 20px;
  20. min-width: 664px;
  21. background:#FFFFFF;
  22. color:#000000;
  23. }
  24. </style>
  25.  
  26. </head>
  27.  
  28. <body>
  29. <h1>Exemple de filtre Chroma</h1>
  30. width:100%; padding:18px; font-size:40pt; color:red;
  31. filter:2(color=#cd853f)">
  32. Application de Chroma(),
  33. texte avec Chroma
  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. </div>
  39. </body>
  40. </html>

Table des matières 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 name="Author" lang="fr" content="Blaise Pascal">
  5. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  6. <meta name="Reply-to" content="thomson.william@infobrol.biz">
  7. <meta name="Copyright" content="William Thomson">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body>
  11. <h1>Exemple de filtre DropShadow</h1>
  12. width:100%; padding:6px; font-size:15pt; color:red;
  13. filter:3(color=#cd853f, offx=1, offy=1)">
  14. Application de DropShadow(),
  15. texte avec DropShadow
  16. The quick brown fox jumped over the lazy dog.
  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. </div>
  21. </body>
  22. </html>

Table des matières Haut

Exemple avec FlipH()

  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:4()</title>
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Michel Chevalier">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Reply-to" content="edmond@halley.info">
  10. <meta name="Publisher" content="Halley">
  11. <meta name="Copyright" content="Edmond Halley">
  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. <img
  17. style="filter:FlipH();"
  18. src="4Filter.jpg"
  19. align="center"
  20. width="88"
  21. height="114"
  22. alt="FlipH
  23. appliqu&eacute; &agrave; une image">
  24. <span style="width: 100%; filter:FlipH();">
  25. FlipH
  26. appliqu&eacute; &agrave; du texte
  27. </span>
  28. </body>
  29. </html>

Table des matières Haut

Exemple avec FlipV()

  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:5()</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="Thomas More">
  9. <meta name="Description" content="Utilisation des filtres, Demo">
  10. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  11. <meta name="Publisher" content="Volta">
  12. <meta name="Copyright" content="Alessandro Volta">
  13. <meta http-equiv="content-language" content="fr">
  14. </head>
  15. <body>
  16. <img
  17. style="filter:FlipV();"
  18. src="5Filter.jpg"
  19. align="center"
  20. width="97"
  21. height="95"
  22. alt="FlipV
  23. appliqu&eacute; &agrave; une image">
  24. <span style="width: 100%; filter:FlipV();">
  25. FlipV
  26. appliqu&eacute; &agrave; du texte
  27. </span>
  28. </body>
  29. </html>

Table des matières 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="pragma" content="no-cache">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="engels.friedrich@infobrol.int">
  9. <meta name="Copyright" content="Friedrich Engels">
  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. <h1>Exemple de filtre Glow</h1>
  15. width:100%; padding:9px; font-size:38pt; color:red;
  16. filter:6(color=#cd853f, strength=7)">
  17. Application de Glow(),
  18. texte avec Glow
  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>

Table des matières 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="pragma" content="no-cache">
  7. <meta name="Reply-to" content="decoulomb.charles@infobrol.biz">
  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: 2px;
  13. padding: 20px;
  14. font-family: verdana;
  15. font-size: 20px;
  16. min-width: 664px;
  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:3px; font-size:30pt; 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>

Table des matières 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 http-equiv="pragma" content="no-cache">
  5. <meta name="Author" lang="fr" content="Victor Cousin">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="kernighan.brian@infobrol.tk">
  8. <meta name="Publisher" content="Kernighan">
  9. <meta name="Copyright" content="Brian Kernighan">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. <h1>Exemple de filtre Invert</h1>
  14. width:100%; padding:13px; font-size:30pt; color:red;
  15. filter:8()">
  16. Application de Invert(),
  17. texte avec Invert
  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>

Table des matières Haut

Exemple avec Mask()

  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:9()</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="Identifier-URL" content="https://www.gaudry.be/">
  10. <meta name="Reply-to" content="gaspard-gustave@coriolis.org">
  11. <meta name="Copyright" content="Gaspard-Gustave Coriolis">
  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: 2px;
  18. font-family: verdana;
  19. font-size: 14px;
  20. min-width: 675px;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000">
  27. <h1>Exemple de filtre Mask</h1>
  28. <div align="center">
  29. <img
  30. src="filter_9.gif"
  31. style="filter:Mask(color=#DDBB99)"
  32. width="96"
  33. height="183"
  34. alt="Exemple de filtre 9"
  35. border="0">
  36. </div>
  37. </body>
  38. </html>

Table des matières Haut

Exemple avec Shadow()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:10()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Author" lang="fr" content="Ernst Bloch">
  6. <meta name="Reply-to" content="cormen.thomas@infobrol.pro">
  7. <meta name="Publisher" content="Cormen">
  8. <meta name="Copyright" content="Thomas Cormen">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <h1>Exemple de filtre Shadow</h1>
  12. <div align="center">
  13. <img
  14. src="filter_10.gif"
  15. style="filter:Shadow(direction=225, color=#cd853f)"
  16. width="134"
  17. height="154"
  18. alt="Exemple de filtre 10"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Table des matières 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="Benjamin Tucker">
  5. <meta name="Reply-to" content="atanasoff.johnvincent@gmail.com">
  6. <meta name="Copyright" content="John Vincent Atanasoff">
  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. width:100%;
  12. padding:15px;
  13. font-size:46pt;
  14. color:blue;
  15. filter:Wave(freq=7, light=53, phase=32, strength=6)">
  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>

Table des matières 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="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="fleming.alexander@infobrol.biz">
  10. <meta name="Copyright" content="Alexander Fleming">
  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:XRay();"
  17. src="12Filter.jpg"
  18. align="center"
  19. width="78"
  20. height="119"
  21. alt="XRay
  22. appliqu&eacute; &agrave; une image">
  23. <span style="width: 100%; filter:XRay();">
  24. XRay
  25. appliqu&eacute; &agrave; du texte
  26. </span>
  27. </body>
  28. </html>

Table des matières 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.

Version en cache

01/11/2024 04:36:28 Cette version de la page est en cache (à la date du 01/11/2024 04:36:28) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.

Document créé le 27/02/2003, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/html-filtres-rf-dropshadow.htmlxhtml-rf-thead.htmlxhtml-rf-span.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Filtres : selfhtml (version 13/02/10)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut