- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Give the object a sine wave distortion to make it look wave with CSS
Wave effect is used to give the object a sine wave distortion to make it look wavy.
The following parameters can be used in this filter
S.No | Parameter & Description |
---|---|
1 | Add A value of 1 adds the original image to the waved image, 0 does not. |
2 | Freq The number of waves. |
3 | Light The strength of the light on the wave (from 0 to 100). |
4 | Phase At what degree the sine wave should start (from 0 to 100). |
5 | Strength The intensity of the wave effect. |
Example
You can try to run the following code to set wave effect −
<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>
- Related Articles
- Wave effect with CSS?
- Print the Mirror Image of Sine-Wave Pattern in C
- Why is a sound wave called a longitudinal wave?
- Difference between Half Wave and Full Wave Rectifier
- Explain the term 'amplitude' of a wave. Draw the diagram of a wave and mark its amplitude on it.
- P WAVE
- Travelling Wave
- Full Wave Rectifier
- Half Wave Rectifier
- Define wave-motion.
- Space Wave Propagation
- What Is a Kondratieff Wave and How Does It Work?
- Standing Wave Normal Mode
- Sound is a wave or a particle?
- A sound wave travels at a speed of $339 ms^{-1}$. If its wavelength is $1.5 cm$, what is the frequency of the wave? Will it be audible?

Advertisements