1、在所有页面公用的CSS中加入:
html {
-webkit-filter: grayscale(100%);
}
2、加上上述代码之后,chrome、firefox等都可以看到效果,但在IE浏览器中可能无法看到效果,可能是因为你的网页没有限定网页标准协议,请加上如下代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
或考虑以下代码:
<meta http-equiv="X-UA-Compatible" content="IE=9" />
有最初的页面设计中,就需要加上这样代码,因为现在去加,有可能你的网页的布局在IE中会发生变化。
3、可能还需要用到的代码:
可以在FLASH代码的<object …>和</object>之间插入:
<param value="false" name="menu"/>
<param value="opaque" name="wmode"/>
CSS中针对IE的:
filter: progid:DXImageTransform.Microsoft.BasicImage(graysale=1);
其实我也没看到这句的效果,或许是在若干年前的IE中使用吧