The example in this article describes how to use JS to create a ripple-like flash effect on images. Share it with everyone for your reference. The specific implementation method is as follows:
<html> <title>js让图片产生波纹一样的flash效果</title> <body> <script LANGUAGE="Javascript"> i=0; function f_wave() {i=i-4; showimg.style.filter="Wave(Freq=1,LightStrength=20,Phase="+i+")"; setTimeout("f_wave()",100); } window.onload=f_wave;</script> <IMG src="/images/m01.jpg" ID=showimg> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.