Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!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">
<head>
<title>变灰黑色的CSS</title>
<style>
/*常规方法,在你的总的CSS文件开始加入本行代码*/
html{filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);}
/*最简方法*,在你的CSS文件里加入下列代码:/
<style type="text/css">
html {
FILTER: gray
}
</style>
</head>
<body>
两种实现方法,请根据情况而用!
<img src="/images/logo.gif" border="0">
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx