发光效果用于在对象周围创建发光。如果它是透明图像,则会在其不透明像素周围创建光晕。
以下参数可以在此过滤器中使用-
序号 | 参数及说明 |
---|---|
1。 | 颜色 您想要发光的颜色。 |
2。 | 强度 发光强度(从1到255)。 |
您可以尝试运行以下代码在对象周围创建发光效果-
<html> <head> </head> <body> <img src="/css/images/logo.png" alt="CSS Logo" style="Filter: Chroma(Color = #000000) Glow(Color=#00FF00, Strength=20)"> <p>Text Example:</p> <div style="width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: Glow(Color=#00FF00, Strength=20)">CSS Tutorials</div> </body> </html>