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

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

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. <?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:0()</title>
  5. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  6. <meta name="Reply-to" content="jean-michel@truong.org">
  7. <meta name="Publisher" content="Truong">
  8. <meta http-equiv="content-language" content="fr">
  9. </head>
  10. <body bgcolor="#FFFFFF" text="#000000">
  11. <img
  12. style="filter:Alpha(opacity=93, finishopacity=0, style=1);"
  13. src="0Filter.jpg"
  14. align="center"
  15. width="116"
  16. height="118"
  17. alt="Alpha
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Alpha(opacity=93, finishopacity=0, style=1);">
  20. Alpha
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </html>

Inhaltsverzeichnis 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 name="Author" lang="fr" content="Thomas Jefferson">
  8. <meta name="Copyright" content="Joseph Fourier">
  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. <div style="width: 100%; filter:Blur(direction=180, strength=4);">
  14. Ceci est un texte avec Blur...
  15. </div>
  16. </body>
  17. </html>

Inhaltsverzeichnis Haut

Exemple avec Chroma()

  1. <head>
  2. <title>filter:2()</title>
  3. <meta http-equiv="pragma" content="no-cache">
  4. <meta name="Reply-to" content="mill.james@infobrol.tk">
  5. <meta http-equiv="content-language" content="fr">
  6. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  7.  
  8. body {
  9. margin: 4px;
  10. padding: 2px;
  11. font-family: verdana;
  12. font-size: 15px;
  13. min-width: 766px;
  14. background:#FFFFFF;
  15. color:#000000;
  16. }
  17. </style>
  18.  
  19. </head>
  20.  
  21. <body>
  22. <img
  23. style="filter:Chroma(color=#8470ff);"
  24. src="2Filter.jpg"
  25. align="center"
  26. width="117"
  27. height="97"
  28. alt="Chroma
  29. appliqu&eacute; &agrave; une image">
  30. <span style="width: 100%; filter:Chroma(color=#8470ff);">
  31. Chroma
  32. appliqu&eacute; &agrave; du texte
  33. </span>
  34. </body>
  35. </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="Author" lang="fr" content="Sigmund Freud">
  9. <meta name="Description" content="Utilisation des filtres, Demo">
  10. <meta name="Publisher" content="Pasteur">
  11. <meta name="Copyright" content="Louis Pasteur">
  12. </head>
  13. <body>
  14. <div style="width: 100%; filter:DropShadow(color=#8470ff, offx=4, offy=4);">
  15. Ceci est un texte avec DropShadow...
  16. </div>
  17. </body>
  18. </html>

Inhaltsverzeichnis 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="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="heinrichrudolf@hertz.info">
  9. <meta name="Copyright" content="Heinrich Rudolf Hertz">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11.  
  12. body {
  13. margin: 1px;
  14. padding: 19px;
  15. font-family: verdana;
  16. font-size: 13px;
  17. min-width: 697px;
  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="87"
  30. height="186"
  31. alt="Exemple de filtre 4"
  32. border="0">
  33. </div>
  34. </body>
  35. </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. </head>
  6. <body bgcolor="#FFFFFF" text="#000000">
  7. <h1>Exemple de filtre FlipV</h1>
  8. <div align="center">
  9. <img
  10. src="filter_5.gif"
  11. style="filter:FlipV()"
  12. width="25"
  13. height="184"
  14. alt="Exemple de filtre 5"
  15. border="0">
  16. </div>
  17. </body>
  18. </html>

Inhaltsverzeichnis Haut

Exemple avec Glow()

  1. <head>
  2. <title>filter:6()</title>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <meta name="Author" lang="fr" content="Jean-Michel Truong">
  5. <meta name="Description" content="Utilisation des filtres, Demo">
  6. <meta name="Reply-to" content="demolinari.gustave@infobrol.pro">
  7. <meta name="Publisher" content="de Molinari">
  8. <meta name="Copyright" content="Gustave de Molinari">
  9. <meta http-equiv="content-language" content="fr">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <div style="width: 100%; filter:Glow(color=#528b8b);">
  13. Ceci est un texte avec Glow...
  14. </div>
  15. </body>
  16. </html>

Inhaltsverzeichnis 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. <head>
  4. <title>filter:7()</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="Reply-to" content="amaduzzi.giovannicristofano@infobrol.int">
  9. <meta name="Publisher" content="Amaduzzi">
  10. <meta name="Copyright" content="Giovanni Cristofano Amaduzzi">
  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:Gray();"
  18. rows="16"
  19. cols="6">
  20. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet
  21. nonummy augue. Suspendisse dui purus, scelerisque at, vulputate
  22. vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis
  23. eleifend. Ut nonummy. Fusce aliquet pede non pede.
  24. Suspendisse dapibus lorem pellentesque magna. Integer nulla.
  25. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet
  26. euismod, purus ipsum pretium metus, in lacinia nulla nisl eget
  27. sapien. Donec ut est in lectus consequat consequat. Etiam eget
  28. dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique.
  29. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  30. Maecenas porttitor congue massa. Fusce posuere, magna sed
  31. pulvinar ultricies, purus lectus malesuada libero, sit amet
  32. commodo magna eros quis urna. Nunc viverra imperdiet enim.
  33. Fusce est. Vivamus a tellus. Pellentesque habitant morbi
  34. tristique senectus et netus et malesuada fames ac turpis
  35. egestas. Proin pharetra nonummy pede.
  36. type="button"
  37. name="btn1"
  38. value="Test"
  39. style="filter:Gray();" />
  40. </form>
  41. </body>
  42. </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="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="thomson.william@gmail.com">
  9. <meta name="Copyright" content="William Thomson">
  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 Invert</h1>
  15. <div align="center">
  16. <img
  17. src="filter_8.gif"
  18. style="filter:Invert()"
  19. width="90"
  20. height="91"
  21. alt="Exemple de filtre 8"
  22. border="0">
  23. </div>
  24. </body>
  25. </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 http-equiv="pragma" content="no-cache">
  7. <meta name="Author" lang="fr" content="Oswald Spengler">
  8. <meta name="Reply-to" content="dijkstra.edsger@infobrol.pro">
  9. <meta name="Copyright" content="Edsger Dijkstra">
  10. <meta http-equiv="content-language" content="fr">
  11. </head>
  12. <body>
  13. <h1>Exemple de filtre Mask</h1>
  14. <div align="center">
  15. <img
  16. src="filter_9.gif"
  17. style="filter:Mask(color=#8470ff)"
  18. width="114"
  19. height="110"
  20. alt="Exemple de filtre 9"
  21. border="0">
  22. </div>
  23. </body>
  24. </html>

Inhaltsverzeichnis Haut

Exemple avec Shadow()

  1. <head>
  2. <title>filter:10()</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="mauchly.johnwilliam@infobrol.int">
  6. <meta name="Copyright" content="John William Mauchly">
  7. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  8.  
  9. body {
  10. margin: 1px;
  11. padding: 19px;
  12. font-family: verdana;
  13. font-size: 13px;
  14. min-width: 697px;
  15. }
  16. </style>
  17.  
  18. </head>
  19.  
  20. <body bgcolor="#FFFFFF" text="#000000">
  21. width:100%;
  22. padding:6px;
  23. font-size:37pt;
  24. color:blue;
  25. filter:Shadow(direction=135, color=#8470ff)">
  26. Exemples d'utilisation de filtres</p>
  27. </div>
  28.  
  29. <br />
  30. <br />
  31.  
  32. <tr valign="top">
  33. <td width="22%" height="218">
  34. The quick brown fox jumped over the lazy dog.
  35. </td>
  36. <td width="21%">
  37. &nbsp;
  38. </td>
  39. <td width="57%">
  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. The quick brown fox jumped over the lazy dog.
  45. </td>
  46. </tr>
  47. </table>
  48.  
  49. </body>
  50. </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="Identifier-URL" content="https://www.gaudry.be/">
  6. <meta name="Reply-to" content="feigenbaum.edward@infobrol.biz">
  7. <meta name="Copyright" content="Edward Feigenbaum">
  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:Wave(light=29, freq=41);"
  13. src="11Filter.jpg"
  14. align="center"
  15. width="110"
  16. height="94"
  17. alt="Wave
  18. appliqu&eacute; &agrave; une image">
  19. <span style="width: 100%; filter:Wave(light=29, freq=41);">
  20. Wave
  21. appliqu&eacute; &agrave; du texte
  22. </span>
  23. </body>
  24. </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 name="Copyright" content="John Backus">
  6. <meta http-equiv="content-language" content="fr">
  7. </head>
  8. <body>
  9. <img
  10. style="filter:XRay();"
  11. src="12Filter.jpg"
  12. align="center"
  13. width="98"
  14. height="113"
  15. alt="XRay
  16. appliqu&eacute; &agrave; une image">
  17. <span style="width: 100%; filter:XRay();">
  18. XRay
  19. appliqu&eacute; &agrave; du texte
  20. </span>
  21. </body>
  22. </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-mask.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