网站变黑白灰色的HTML代码CSS详细讲解 |
来源:智睿 浏览:620 次 发布时间:2022-11-30 21:35:14 |
网站变黑白灰色的HTML代码CSS详细讲解,为了方便现总结CSS实用滤镜代码,做些微的调整,即可将网站转换为“黑、白、灰”风格。 方法一:
html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); }方法二:
若网站没有使用CSS文件,可以在网页/模板的HTML代码<head>和</head> 之间插入:
<style type=”text/css”> html{ filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } </style>方法三:
最简单的把页面变成黑白灰的代码是在head之间:(或CSS文件中 选择器为html或body)
<style type=”text/css”> html { filter: gray; } </style> 方法四: 最简单的把页面变成黑白灰的代码是在head之间:(或CSS文件中 选择器为html或body)
<style> html { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); _filter:none; } </style>
|
【刷新页面】【加入收藏】【打印此文】 【关闭窗口】 |
上一篇:智睿中小学校网站系统 V 10.9.7 智睿中小学网站系统,智睿学校网站管理系统 下一篇:鬼谷子简介 智睿出处 |