Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.

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

Inhoudsopgave 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 name="Author" lang="fr" content="Gordon Earle Moore">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Publisher" content="Einstein">
  10. <meta name="Copyright" content="Albert Einstein">
  11. <meta http-equiv="content-language" content="fr">
  12. </head>
  13. <body>
  14. <h1>Exemple de filtre Alpha</h1>
  15. <div align="center">
  16. <img
  17. src="filter_0.gif"
  18. style="filter:Alpha(opacity=71, finishopacity=0, style=2)"
  19. width="57"
  20. height="177"
  21. alt="Exemple de filtre 0"
  22. border="0">
  23. </div>
  24. </body>
  25. </html>

Inhoudsopgave 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="Tim Berners-Lee">
  8. <meta name="Reply-to" content="frank@gray.org">
  9. <meta name="Publisher" content="Gray">
  10. <meta name="Copyright" content="Frank Gray">
  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: 2px;
  16. padding: 1px;
  17. font-family: verdana;
  18. font-size: 15px;
  19. min-width: 750px;
  20. }
  21. </style>
  22.  
  23. </head>
  24.  
  25. <body bgcolor="#FFFFFF" text="#000000">
  26. width:100%;
  27. padding:15px;
  28. font-size:23pt;
  29. color:blue;
  30. filter:Blur(strength=4)">
  31. Exemples d'utilisation de filtres</p>
  32. </div>
  33.  
  34. <br />
  35. <br />
  36.  
  37. <tr valign="top">
  38. <td width="22%" height="218">
  39. The quick brown fox jumped over the lazy dog.
  40. The quick brown fox jumped over the lazy dog.
  41. The quick brown fox jumped over the lazy dog.
  42. </td>
  43. <td width="21%">
  44. &nbsp;
  45. </td>
  46. <td width="57%">
  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>

Inhoudsopgave 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="Reply-to" content="bodin.jean@gmail.com">
  9. <meta name="Copyright" content="Jean Bodin">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <img
  13. style="filter:Chroma(color=#528b8b);"
  14. src="2Filter.jpg"
  15. align="center"
  16. width="94"
  17. height="89"
  18. alt="Chroma
  19. appliqu&eacute; &agrave; une image">
  20. <span style="width: 100%; filter:Chroma(color=#528b8b);">
  21. Chroma
  22. appliqu&eacute; &agrave; du texte
  23. </span>
  24. </body>
  25. </html>

Inhoudsopgave 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. <head>
  4. <title>filter:3()</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="lerdorf.rasmus@gmail.com">
  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 DropShadow</h1>
  13. <div align="center">
  14. <img
  15. src="filter_3.gif"
  16. style="filter:DropShadow(color=#528b8b, offx=2, offy=1)"
  17. width="44"
  18. height="146"
  19. alt="Exemple de filtre 3"
  20. border="0">
  21. </div>
  22. </body>
  23. </html>

Inhoudsopgave 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="Jean-Raymond Abrial">
  6. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  7. <meta name="Reply-to" content="halley.edmond@gmail.com">
  8. <meta name="Copyright" content="Edmond Halley">
  9. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  10.  
  11. body {
  12. margin: 2px;
  13. padding: 1px;
  14. font-family: verdana;
  15. font-size: 15px;
  16. min-width: 750px;
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <h1>Exemple de filtre FlipH</h1>
  24. <div align="center">
  25. <img
  26. src="filter_4.gif"
  27. style="filter:FlipH()"
  28. width="183"
  29. height="103"
  30. alt="Exemple de filtre 4"
  31. border="0">
  32. </div>
  33. </body>
  34. </html>

Inhoudsopgave 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="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Identifier-URL" content="https://www.gaudry.be/">
  9. <meta name="Copyright" content="Jeremy Bentham">
  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: 2px;
  15. padding: 8px;
  16. font-family: verdana;
  17. font-size: 13px;
  18. min-width: 719px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. <h1>Exemple de filtre FlipV</h1>
  28. <div align="center">
  29. <img
  30. src="filter_5.gif"
  31. style="filter:FlipV()"
  32. width="12"
  33. height="126"
  34. alt="Exemple de filtre 5"
  35. border="0">
  36. </div>
  37. </body>
  38. </html>

Inhoudsopgave 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="Content-Type" content="text/html; charset=UTF-8" />
  7. <meta name="Author" lang="fr" content="Thomas Jefferson">
  8. <meta name="Description" content="Utilisation des filtres, Demo">
  9. <meta name="Copyright" content="John von Neumann">
  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: 2px;
  15. padding: 1px;
  16. font-family: verdana;
  17. font-size: 15px;
  18. min-width: 750px;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body bgcolor="#FFFFFF" text="#000000">
  25. <h1>Exemple de filtre Glow</h1>
  26. <div align="center">
  27. <img
  28. src="filter_6.gif"
  29. style="filter:Glow(color=#fafad2)"
  30. width="69"
  31. height="142"
  32. alt="Exemple de filtre 6"
  33. border="0">
  34. </div>
  35. </body>
  36. </html>

Inhoudsopgave 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="Author" lang="fr" content="Ludwig Feuerbach">
  8. <meta name="Reply-to" content="koch.werner@infobrol.pro">
  9. <meta name="Copyright" content="Werner Koch">
  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 Gray</h1>
  14. width:100%; padding:14px; font-size:12pt; color:red;
  15. filter:7()">
  16. Application de Gray(),
  17. texte avec Gray
  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>

Inhoudsopgave 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 http-equiv="pragma" content="no-cache">
  8. <meta name="Author" lang="fr" content="Richard Hamming">
  9. <meta name="Description" content="Utilisation des filtres, Demo">
  10. <meta name="Publisher" content="Doppler">
  11. <meta name="Copyright" content="Christian Doppler">
  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: 1px;
  18. font-family: verdana;
  19. font-size: 15px;
  20. min-width: 750px;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000">
  27. <div style="width: 100%; filter:Invert();">
  28. Ceci est un texte avec Invert...
  29. </div>
  30. </body>
  31. </html>

Inhoudsopgave 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 name="Author" lang="fr" content="James Watt">
  7. <meta name="Description" content="Utilisation des filtres, Demo">
  8. <meta name="Reply-to" content="carldavid.anderson@infobrol.tk">
  9. <meta name="Copyright" content="Anderson Carl David">
  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: 2px;
  15. padding: 8px;
  16. font-family: verdana;
  17. font-size: 13px;
  18. min-width: 719px;
  19. background:#FFFFFF;
  20. color:#000000;
  21. }
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27. width:100%;
  28. padding:6px;
  29. font-size:19pt;
  30. color:blue;
  31. filter:Mask(color=#fafad2)">
  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. </td>
  42. <td width="21%">
  43. &nbsp;
  44. </td>
  45. <td width="57%">
  46. The quick brown fox jumped over the lazy dog.
  47. The quick brown fox jumped over the lazy dog.
  48. </td>
  49. </tr>
  50. </table>
  51.  
  52. </body>
  53. </html>

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

Inhoudsopgave 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="Jean Bodin">
  5. <meta name="Publisher" content="James Alfred">
  6. <meta name="Copyright" content="Van Allen James Alfred">
  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: 1px;
  13. font-family: verdana;
  14. font-size: 15px;
  15. min-width: 750px;
  16. }
  17. </style>
  18.  
  19. </head>
  20.  
  21. <body bgcolor="#FFFFFF" text="#000000">
  22. width:100%;
  23. padding:20px;
  24. font-size:41pt;
  25. color:blue;
  26. filter:Wave(freq=35, light=39, phase=84, strength=10)">
  27. Exemples d'utilisation de filtres</p>
  28. </div>
  29.  
  30. <br />
  31. <br />
  32.  
  33. <tr valign="top">
  34. <td width="22%" height="218">
  35. The quick brown fox jumped over the lazy dog.
  36. The quick brown fox jumped over the lazy dog.
  37. </td>
  38. <td width="21%">
  39. &nbsp;
  40. </td>
  41. <td width="57%">
  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>

Inhoudsopgave 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 http-equiv="pragma" content="no-cache">
  6. <meta name="Description" content="Utilisation des filtres, Demo">
  7. <meta name="Reply-to" content="faraday.michael@gmail.com">
  8. <meta name="Publisher" content="Faraday">
  9. <meta name="Copyright" content="Michael Faraday">
  10. <link media="screen" type="text/css" rel="stylesheet" href="filters.css" />
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <h1>Exemple de filtre XRay</h1>
  13. <div align="center">
  14. <img
  15. src="filter_12.gif"
  16. style="filter:XRay()"
  17. width="48"
  18. height="94"
  19. alt="Exemple de filtre 12"
  20. border="0">
  21. </div>
  22. </body>
  23. </html>

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

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 27/02/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/html-filtres-rf-mask.html/

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Filtres : selfhtml (version 13/02/10)

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut