DIV 濾鏡組合 圖片倒影制作
文章導(dǎo)讀:
<html>
<head>
<title>三個濾鏡同時使用</title>
<style>
<!--
body{
margin:12px;
background:#000000;
}
.three{
filter:flipv alpha(opacity=80) wave(add=0, freq=15, lightstrength=30, phase=0, strength=4);
/* 同時使用三個濾鏡 */
/* 豎直翻轉(zhuǎn)、透明、波浪效果 */
}
-->
</style>
</head>
<body>
<img src="lotus.jpg"><br>
<img src="lotus.jpg" class="three">
</body>
</html>