E flow design
The effect created with the glow filter, the code is as follows:
FILTER: glow(color=#B4BBCF,strength=5) |
E flow design
This effect uses two filters: shadow and alpha. The code is as follows:
FILTER: alpha(opacity=100,finishiopacity=0,style=1)
shadow(color=#8C96B5,direction=135)
E flow design
This effect also uses two filters mask and shadow. The code is as follows:
FILTER: mask(color=#E1E4EC)
shadow(color=#8C96B5,direction=135)chroma(color=#E1E4EC)
Note: The color of the mask should be consistent with the background color of the web page, and the color of the font is determined by the shadow.
|
|
|
If the above effect is Yin text, then this effect should be regarded as Yang text. Use two filters to implement mask and dropshadow. Note that the color of the mask should be consistent with the background color of the web page, or use mask and chroma in pairs. The same effect can be achieved. The code is as follows:
FILTER: mask(color=#E1E4EC)
dropshadow(color=#B4BBCF,offx=-3,offy=-3,positive=1)
chroma(color=#E1E4EC)"
|
|
E-flow design
|
You can use the glow filter to create hollow characters by setting the font color to the background color and then setting the strength value of the glow filter to 1 or 2. The code for this effect is as follows:
FILTER: glow(color=#8C96B5,strength=2)
shadow(color=#B4BBCF,direction=135)
|
If the background is a picture, in order to achieve a satisfactory effect, you need to use mask and chroma in combination. This will make the font feel transparent and let the background show through.
The code for the former effect listed above is:
FILTER: mask(color=#E1E4EC)
shadow(color=#B4BBCF,direction=135)
chroma(color=#E1E4EC)
Note: The color of the font is determined by the shadow. The colors of the mask and chroma must be the same, and the color is arbitrary.
The code in the middle is:
FILTER: glow(strength=1)
mask(color=#B4BBCF)
chroma(color=#B4BBCF)
Note: The color of mask and chroma are the same, and this color determines the color of the font.
The code for the latter is:
FILTER: mask(color=#E1E4EC)
dropshadow(color=#B4BBCF,offx=-3,offy=-3,positive=1)
chroma(color=#E1E4EC)
Note: The colors of mask and chroma are the same, and the color is determined by dropshadow.
|
|
|
|
|
|
|
|
| |
|