跳至主要內容

网页设置黑白页

CoolWind小于 1 分钟前端黑白页网页

网页设置黑白页

网页代码

  • 在首页或Header页面 ,<head> 标签中插入以下样式
<style>
html{
    -webkit-filter: grayscale(100%); /* webkit */
    -moz-filter: grayscale(100%);  /*firefox*/
    -ms-filter: grayscale(100%);  /*ie9*/
    -o-filter: grayscale(100%); /*opera*/
    filter: grayscale(100%);  /*ie9- */
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 
    filter:gray;
}
</style>

参考 https://wubin.work/blog/articles/234open in new window

上次编辑于:
贡献者: liujl