使用 CSS 实现波浪效果?
波浪效果用于让对象发生正弦波畸变以使其看起来有波浪感。
该滤镜中可使用以下参数
序号 | 参数和说明 |
---|---|
1. | Add 值为 1 时将原始图像添加到波浪图像中,为 0 时不添加。 |
2. | Freq 波浪数量。 |
3. | Light 波浪上的光强度(从 0 到 100)。 |
4. | Phase 正弦波应从哪个角度开始(从 0 到 100)。 |
5. | Strength 波浪效果的强度。 |
示例
你可以尝试运行以下代码来设置波浪效果
<html> <head> </head> <body> <img src = "/css/images/logo.png" alt = "CSS Logo" style = "FILTER: Chroma(Color = #000000) Wave(Add=0, Freq=1, LightStrength=10, Phase=220, Strength=10)"> <p>Text Example:</p> <div style = "width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: Wave(Add=0, Freq=1, LightStrength=10, Phase=20, Strength=20)">CSS Tutorials</div> </body> </html>
广告