S-22 Posted 2008年5月19日 04:22 Posted 2008年5月19日 04:22 把网页变为黑白显示,在 CSS 表单的最顶端加入以下代码: html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } 有一些网站可能使用 CSS 代码后仍然不能生效,是因为网站没有使用最新的网页标准协议引用,请将网页最头部的 <html> 替换为以下代码: <!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">[/code] 如果网站没有使用 CSS,可以在网页/模板的 HTML 代码 <head> 和 </head> 之间加入以下代码: [code]<style> html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } </style> 有一些网站 FLASH 动画的颜色不能被 CSS 滤镜控制,可以在 FLASH 代码的 <object …> 和 </object> 之间加入以下代码: <param value="false" name="menu"/> <param value="opaque" name="wmode"/>[/code] 最简单的把页面变成灰色的代码是在 <head> 和 </head> 之间加入以下代码: [code]<style type="text/css"> html { filter: gray; } </style>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new account登录
Already have an account? Sign in here.
现在登录