搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS3教程
CSS3基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3模糊过滤效果示例 -基础教程 div.cn</title> <style> img.blur { -webkit-filter: blur(2px); /* Chrome, Safari, Opera */ filter: blur(2px); } img.extra-blur { -webkit-filter: blur(5px); /* Chrome, Safari, Opera */ filter: blur(5px); } /* Some CSS to beautify this example */ table td{ padding: 10px; text-align: center; } </style> </head> <body> <table> <tr> <td> <img src="/run/images/parrot.png" alt="Parrot"> </td> <td> <img class="blur" src="/run/images/parrot.png" alt="Parrot"> </td> <td> <img class="extra-blur" src="/run/images/parrot.png" alt="Parrot"> </td> </tr> <tr> <td>原始图像</td> <td>blur(2px)</td> <td>blur(5px)</td> </tr> </table> </body> </html>
运行结果