filterプロパティのAlpha()は、透過表示にする際に使用します。
p.sample1 img {
filter:progid:DXImageTransform.Microsoft.Alpha(Style=2,Opacity=100,FinishOpacity=0);
}
p.sample2 img {
filter:alpha(Style=2,Opacity=100,FinishOpacity=0);
}
<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=”sample1″>
フィルタ効果Alpha()<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
<p class=”sample2″>
フィルタ効果Alpha()<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif”>
</p>
</body>
</html>
filterプロパティを適用していない画像
フィルタ効果Alpha()
フィルタ効果Alpha()