filterプロパティのMatrix()は、二次元面を傾けたような表示にする際に使用します。
p.sample img {
filter:progid:DXImageTransform.Microsoft.Matrix(M11=1,M22=1,M12=0.1,M21=0.5,sizingMethod=”auto expand”);
}
<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”>
フィルタ効果Matrix()<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
</body>
</html>
filterプロパティを適用していない画像
フィルタ効果Matrix()