网页或者app首页置灰(特殊节日或者日期)

总的来说就是在应用的全局‘body’css添加

filter:grayscale(100%);

比如html网页:

body{

        filter:grayscale(100%);

}

比如uniapp首页index.vue

page{

        filter:grayscale(100%);

}

以此类推。

你可能感兴趣的:(前端,uni-app,节日,css)