filterプロパティのPixelate()は、ピクセルサイズを大きくしてモザイク表示にする際に使用します。
p.sample img {
filter:progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=10);
}
<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”>
フィルタ効果Pixelate()<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
</body>
</html>
filterプロパティを適用していない画像
フィルタ効果Pixelate()