运动模糊用于创建具有方向和强度的模糊图片或文本。
以下参数可以在此过滤器中使用
序号 | 参数及说明 |
---|---|
1 | 添加对 或错。如果为true,则将图像添加到模糊图像;否则为false。如果为false,则不会将图像添加到模糊图像中。 |
2 | 方向 迷离的方向,顺时针旋转,四舍五入为45度增量。默认值为270(左)。 0 =顶部 45 =右上方 90 =右 135 =右下方 180 =底部 225 =左下方 270 =左 315 =左上方 |
3 | 强度 模糊将扩展的像素数。默认值为5像素。 |
您可以尝试运行以下代码来模糊图像
<html> <head> </head> <body> <img src = "/css/images/logo.png" alt="CSS Logo" style = "Filter: Blur(Add = 0, Direction = 225, Strength = 10)"> <p>Text Example:</p> <div style="width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: blue; Filter: Blur(Add = 1, Direction = 225, Strength = 10)">CSS Tutorials</div> </body> </html>