众筹网站建设方案模板,浙江省住房和城乡建设厅网站,wordpress 做问卷,qq邮箱做网站backdrop-filter: blur(10px); 这一行代码表示将背景进行模糊处理#xff0c;模糊程度为10像素。这会导致背景内容在这个元素后面呈现模糊效果。 background-color: rgb(255 255 255 / .32); 这一行代码表示设置元素的背景颜色为白色#xff08;RGB值为0, 0, 0#xff09; 这一行代码表示将背景进行模糊处理模糊程度为10像素。这会导致背景内容在这个元素后面呈现模糊效果。 background-color: rgb(255 255 255 / .32); 这一行代码表示设置元素的背景颜色为白色RGB值为0, 0, 0并且通过/符号后面的透明度值32%不透明度使背景半透明。这会导致背景显示为半透明的白色。 微信小程序
当tabbar背景颜色是黑色#000000的时候设置background-color: rgb(0 0 0 / .32)
/* 设置tabbar背景颜色 */
background-color: #000000 !important;
/* 毛玻璃 高斯模糊 */
backdrop-filter: blur(10px) !important;
background-color: rgb(0 0 0 / .32) !important;当tabbar背景颜色是白色#ffffff的时候设置background-color: rgb(255 255 255 / .32)
/* 设置tabbar背景颜色 */
background-color: #000000 !important;
/* 毛玻璃 高斯模糊 */
backdrop-filter: blur(10px) !important;
background-color: rgb(255 255 255 / .32) !important;UniApp
与微信小程序写法类似但是background-color需要改成
/* 设置tabbar背景颜色 */
background-color: #000000 !important;
/* 毛玻璃 高斯模糊 */
backdrop-filter: blur(10px) !important;
background-color: rgba(255,255,255,.32) !important;