图象淡出效果的javascript代码

发表于:2007-06-21来源:作者:点击数: 标签:

   

<script language=JAVAscript>

function fade_in()

{

if (test.filters.alpha.opacity < 100)

{

test.filters.alpha.opacity += 10;

clearTimeout(timer);

var timer = setTimeout("fade_in()",150);

timer;

}

}

</script>

原文转自:http://www.ltesting.net