新闻详情

波浪文字效果 制作 滤镜 CSS

2026 2009/3/25
<html>
<head>
<title>Wave波浪滤镜</title>
<style>
<!--
body{
 margin:12px;
 background-color:#e4f1ff;
}
span{
 font-family:Arial, Helvetica, sans-serif;
 height:100px; font-size:80px;
 font-weight:bold;
 color:#50a6ff;
}
span.wave1{ 
 filter:wave(add=0,freq=2,lightstrength=70,phase=75,strength=4);
}
span.wave2{ 
 filter:wave(add=0,freq=4,lightstrength=20,phase=25,strength=5);
}
span.wave3{ 
 filter:wave(add=1,freq=4,lightstrength=60,phase=0,strength=6);
}
-->
</style>
   </head>
<body>
 <span class="wave1">波浪Wave</span>
 <span class="wave2">波浪Wave</span>
 <span class="wave3">波浪Wave</span>
</body>
</html>

相关资讯

18973218026
返回顶部