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

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 http-equiv="pragma" content="no-cache">
  5. <meta name="Reply-to" content="charles@bonnet.info">
  6. <meta name="Publisher" content="Bonnet">
  7. <meta name="Copyright" content="Charles Bonnet">
  8. <meta http-equiv="content-language" content="fr">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10. </head>
  11. <body>
  12. <h1>Exemple de filtre Alpha</h1>
  13. <div align="center">
  14. <img
  15. src="filter_0.gif"
  16. style="filter:Alpha(opacity=70, finishopacity=0, style=0)"
  17. width="28"
  18. height="60"
  19. alt="Exemple de filtre 0"
  20. border="0">
  21. </div>
  22. </body>
  23. </html>

Inhaltsverzeichnis Haut

Exemple avec Blur()

  1. <head>
  2. <title>filter:1()</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="Identifier-URL" content="https://www.gaudry.be/">
  7. <meta name="Reply-to" content="faraday.michael@infobrol.edu">
  8. <meta name="Copyright" content="Michael Faraday">
  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: 12px;
  15. font-family: verdana;
  16. font-size: 19px;
  17. min-width: 620px;
  18. background:#FFFFFF;
  19. color:#000000;
  20. }
  21. </style>
  22.  
  23. </head>
  24.  
  25. <body>
  26. <div style="width: 100%; filter:Blur(direction=90, strength=9);">
  27. Ceci est un texte avec Blur...
  28. </div>
  29. </body>
  30. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  1. <head>
  2. <title>filter:2()</title>
  3. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  4. <meta name="Publisher" content="de Unamuno">
  5. <meta name="Copyright" content="Miguel de Unamuno">
  6. <meta http-equiv="content-language" content="fr">
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <form>
  10. <textarea id="test_textarea"
  11. style="filter:Chroma(color=#cdc9a5);"
  12. rows="13"
  13. cols="16">
  14. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  15. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  16. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  17. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  18. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  19. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  20. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  21. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  22. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  23. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  24. Maecenas porttitor congue massa. Fusce posuere, magna sed
  25. pulvinar ultricies, purus lectus malesuada libero, sit amet
  26. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  27. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  28. tristique senectus et netus et malesuada fames ac turpis
  29. egestas. Proin pharetra nonummy pede.
  30. type="button"
  31. name="btn1"
  32. value="Test"
  33. style="filter:Chroma(color=#cdc9a5);" />
  34. </form>
  35. </body>
  36. </html>

Inhaltsverzeichnis 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="Reply-to" content="jobs.steve@infobrol.com">
  5. <meta name="Copyright" content="Steve Jobs">
  6. </head>
  7. <body>
  8. <h1>Exemple de filtre DropShadow</h1>
  9. <div align="center">
  10. <img
  11. src="filter_3.gif"
  12. style="filter:DropShadow(offx=2, offy=3)"
  13. width="76"
  14. height="87"
  15. alt="Exemple de filtre 3"
  16. border="0">
  17. </div>
  18. </body>
  19. </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 http-equiv="pragma" content="no-cache">
  5. <meta name="Reply-to" content="bloch.ernst@infobrol.biz">
  6. <meta name="Publisher" content="Bloch">
  7. <meta name="Copyright" content="Ernst Bloch">
  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. <h1>Exemple de filtre FlipH</h1>
  12. <div align="center">
  13. <img
  14. src="filter_4.gif"
  15. style="filter:FlipH()"
  16. width="52"
  17. height="43"
  18. alt="Exemple de filtre 4"
  19. border="0">
  20. </div>
  21. </body>
  22. </html>

Inhaltsverzeichnis Haut

Exemple avec FlipV()

  1. <head>
  2. <title>filter:5()</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="Anderson Carl David">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="chevalier.michel@infobrol.biz">
  8. <meta name="Publisher" content="Chevalier">
  9. <meta name="Copyright" content="Michel Chevalier">
  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 FlipV</h1>
  15. <div align="center">
  16. <img
  17. src="filter_5.gif"
  18. style="filter:FlipV()"
  19. width="136"
  20. height="14"
  21. alt="Exemple de filtre 5"
  22. border="0">
  23. </div>
  24. </body>
  25. </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="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  8. <meta name="Reply-to" content="bunsen.robertwilhelm@gmail.com">
  9. <meta name="Publisher" content="Bunsen">
  10. <meta name="Copyright" content="Robert Wilhelm Bunsen">
  11. <meta http-equiv="content-language" content="fr">
  12. </head>
  13. <body>
  14. <div style="width: 100%; filter:Glow(strength=1, color=#e0eee0);">
  15. Ceci est un texte avec Glow...
  16. </div>
  17. </body>
  18. </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 http-equiv="pragma" content="no-cache">
  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.  
  10. body {
  11. margin: 4px;
  12. padding: 11px;
  13. font-family: verdana;
  14. font-size: 9px;
  15. min-width: 767px;
  16. }
  17. </style>
  18.  
  19. </head>
  20.  
  21. <body bgcolor="#FFFFFF" text="#000000">
  22. <form>
  23. <textarea id="test_textarea"
  24. style="filter:Gray();"
  25. rows="5"
  26. cols="9">
  27. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  28. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  29. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  30. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  31. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  32. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  33. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  34. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  35. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  36. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  37. Maecenas porttitor congue massa. Fusce posuere, magna sed
  38. pulvinar ultricies, purus lectus malesuada libero, sit amet
  39. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  40. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  41. tristique senectus et netus et malesuada fames ac turpis
  42. egestas. Proin pharetra nonummy pede.
  43. type="button"
  44. name="btn1"
  45. value="Test"
  46. style="filter:Gray();" />
  47. </form>
  48. </body>
  49. </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="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Author" lang="fr" content="Guillaume de Champeaux">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Reply-to" content="james@gosling.info">
  10. <meta name="Publisher" content="Gosling">
  11. <meta name="Copyright" content="James Gosling">
  12. <meta http-equiv="content-language" content="fr">
  13. </head>
  14. <body bgcolor="#FFFFFF" text="#000000">
  15. <img
  16. style="filter:Invert();"
  17. src="8Filter.jpg"
  18. align="center"
  19. width="94"
  20. height="115"
  21. alt="Invert
  22. appliqu&eacute; &agrave; une image">
  23. <span style="width: 100%; filter:Invert();">
  24. Invert
  25. appliqu&eacute; &agrave; du texte
  26. </span>
  27. </body>
  28. </html>

Inhaltsverzeichnis 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 name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="euler.leonhard@infobrol.int">
  8. <meta name="Publisher" content="Euler">
  9. <meta name="Copyright" content="Leonhard Euler">
  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. <div style="width: 100%; filter:Mask(color=#cdc9a5);">
  15. Ceci est un texte avec Mask...
  16. </div>
  17. </body>
  18. </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="Vandana Shiva">
  8. <meta name="Reply-to" content="halley.edmond@gmail.com">
  9. <meta name="Copyright" content="Edmond Halley">
  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: 4px;
  15. padding: 11px;
  16. font-family: verdana;
  17. font-size: 9px;
  18. min-width: 767px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <h1>Exemple de filtre Shadow</h1>
  26. width:100%; padding:10px; font-size:13pt; color:red;
  27. filter:10(color=#e0eee0)">
  28. Application de Shadow(),
  29. texte avec Shadow
  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>

Inhaltsverzeichnis Haut

Exemple avec Wave()

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <head>
  3. <title>filter:11()</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="Author" lang="fr" content="Samuel Morse">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="pascal.blaise@gmail.com">
  8. <meta name="Publisher" content="Pascal">
  9. <meta name="Copyright" content="Blaise Pascal">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. width:100%;
  14. padding:11px;
  15. font-size:28pt;
  16. color:blue;
  17. filter:Wave(freq=36, light=6, phase=74, strength=3)">
  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. The quick brown fox jumped over the lazy dog.
  37. </td>
  38. </tr>
  39. </table>
  40.  
  41. </body>
  42. </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 name="Publisher" content="Hejlsberg">
  8. <meta name="Copyright" content="Anders Hejlsberg">
  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: 4px;
  14. padding: 11px;
  15. font-family: verdana;
  16. font-size: 9px;
  17. min-width: 767px;
  18. }
  19. </style>
  20.  
  21. </head>
  22.  
  23. <body bgcolor="#FFFFFF" text="#000000">
  24. <img
  25. style="filter:XRay();"
  26. src="12Filter.jpg"
  27. align="center"
  28. width="113"
  29. height="117"
  30. alt="XRay
  31. appliqu&eacute; &agrave; une image">
  32. <span style="width: 100%; filter:XRay();">
  33. XRay
  34. appliqu&eacute; &agrave; du texte
  35. </span>
  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-chroma.html/xhtml-rf-span.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