filterプロパティのxray()は、X線効果(グレースケールにして反転)を適用する際に使用します。
尚、xray()は、DXImageTransform.Microsoft.BasicImage(xray=1)を指定したのと同じ結果となります。
p.sample img {
filter: xray();
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p>
filterプロパティを適用していない画像<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
<p class=”sample”>
フィルタ効果xray()<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
</body>
</html>
filterプロパティを適用していない画像
フィルタ効果xray()