清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
<html> <head> <title>JS图片光照效果</title> <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> </head> <body> <img src="http://www.codesc.net/jscode/demoimg/wall8.jpg" ID=showimg /> </body> </html>