所属分类:web前端开发
可以在此滤镜中使用以下参数 −
序号 | 参数和描述 |
---|---|
1 | 颜色 您想要的阴影颜色。 |
2 | 方向 模糊的方向,顺时针方向,以45度为增量。默认值为270(左)。 0 = 顶部 45 = 右上 90 = 右侧 135 = 右下 180 = 底部 225 = 左下 270 = 左侧 315 = 左上 |
您可以尝试运行以下代码来实现阴影滤镜 −
演示
<html> <head> </head> <body> <img src="/css/images/logo.png" alt="CSS Logo"style="FILTER: Chroma(Color = #000000) Shadow(Color=#00FF00, Direction=225)"> <p>Text Example:</p> <div style="width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: Shadow(Color=#0000FF, Direction=225)">CSS Tutorials</div> </body> </html>