Home  >  Article  >  Web Front-end  >  JS method to achieve ripple-like flash effect on images_javascript skills

JS method to achieve ripple-like flash effect on images_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:12:491351browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn