直播平台源码,用CSS制作毛玻璃效果(高斯模糊效果)

直播平台源码,用CSS制作毛玻璃效果(高斯模糊效果)

<style>
	body,main::before{
    
    
		background: url("images/1.jpg") 0 / cover fixed;
	}
 
	main{
    
    
		position: relative;
		display: flex;
		align-content: center;
		justify-content: center;
		margin-top: 200px;
		padding: 30px;
		background: hsla(0,0%,100%,.3);
		border-radius: 5px;
	}
 
	main::before{
    
    
		content: '';
		position: absolute;
		top:0;right:0;bottom:0;left:0;
		filter: blur(20px);
		z-index: -1;
		
	}
</style>

以上就是直播平台源码,用CSS制作毛玻璃效果(高斯模糊效果), 更多内容欢迎关注之后的文章

猜你喜欢

转载自blog.csdn.net/yb1314111/article/details/125099647