用filter:grayscale将图片过滤成灰色

设置成百分之百直接过滤成灰色:

img{filter:gray; 
  filter:grayscale(100%); 
  -0-filter:grayscale(100%); 
  -moz-filter:grayscale(100%); 
  -webkit-filter:grayscale(100%); 
}

可以通过设置具体百分数值来定义需求:

img{filter:gray; 
  filter:grayscale(60%); 
  -0-filter:grayscale(60%); 
  -moz-filter:grayscale(60%); 
  -webkit-filter:grayscale(60%); 
}

 

posted @ 2016-07-22 23:08  程序大大  阅读(2965)  评论(0编辑  收藏  举报