制作图形淡出淡隐效果

      电脑 2004-7-14 18:52
提示: 看下面的Banner,一会儿好象要消失,但又慢慢的显示出来,给人一种神秘莫测的感觉。
www.itlearner.com/code/51js/0004.htm

1.将下面的代码加入到<body>或<head>中

<script language="javascript">
//var d='true'
var d=0
function JM_fade(ob){

if (d==0) {ob.filters.alpha.opacity+=1} else {ob.filters.alpha.opacity-=1}

if (ob.filters.alpha.opacity==100){d=1;} else if (ob.filters.alpha.opacity==0){d=0}

}
setInterval("JM_fade(u)",10)

</script>


2.在使用此效果的图片加上 name="u" 和 style="filter:alpha(opacity=0)"
<img src="http://www.ie-zone.com/banners/a01.gif" name="u" border=0 alt="Image" style="filter:alpha(opacity=0)">
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}