Expérience : Bien que l'effet de filtre CSS soit beau et facile à utiliser, il ne convient pas à la production de pages Web car il ne prend pas en charge FF et IE6 Il est préférable pour les artistes de ne pas le faire. utilisez-le pour la production de pages Web. Cela réduira votre contenu technique.
Méthode 1 :
<span style="position:absolute;width:150;filter:shadow(color=orange);font-size:45pt;color:yellow">文字</span>
Méthode 2 :
<p style="font-size:12px;height:12px;color:white;filter:glow(color=black,strength=1);">Text描边字</p>
Méthode 3 :
<style. type="text/css"> body {font:12px "Verdana";filter:alpha(style=1,startY=0,finishY=100,startX=100,finishX=100);background-color:#3366cc;} span { position:absolute; padding:4px; filter: Dropshadow(offx=1,offy=0,color=white) Dropshadow(offx=0,offy=1,color=white) Dropshadow(offx=0,offy=-1,color=white) Dropshadow(offx=-1,offy=0,color=white); } #english { font-size:14px;} </style>
<span id="english">This is the prospect of filter - dropshadow.</span><span>中文描边效果</span>
.font { font-family: "新宋体"; font-size: 12px; font-style. normal; color: #FFFF00; padding:1px; letter-spacing: 2px; filter: Dropshadow(offx=1,offy=0,color=black) Dropshadow(offx=0,offy=1,color=black) Dropshadow(offx=0,offy=-1,color=black) Dropshadow(offx=-1,offy=0,color=black); }
Méthode 4 :
#text { float:left; color:#C60A12; filter:Dropshadow(offx=1,offy=0,color=#ffffff) Dropshadow(offx=0,offy=1,color=#ffffff) Dropshadow(offx=-1,offy=0,color=#ffffff) Dropshadow(offx=0,offy=-1,color=#ffffff); }
Cet effet utilise CSS. Le filtre d'ombre est utilisé pour y parvenir. Les filtres d'ombre ordinaires ne produiront qu'une projection dans une seule direction. Ici, quatre directions de projection sont définies, donc un effet de trait est produit.
<p style="font-size:12px;height:12px;color:white;filter:glow(color=black,strength=1);">Text描边字</p>