backdrop-filter实现弹框毛玻璃模糊效果实例页面

回到相关文章 »

效果:

代码:

CSS代码:
dialog {
    -webkit-backdrop-filter: blur(5px);	
    backdrop-filter: blur(5px);	
}