|
|
| 鼠标经过图片透明渐变显现 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-8-22 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>鼠标经过图片透明渐变显现</title>
</head>
<body>
<SCRIPT language=JavaScript>
<!--
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",100)}
function low(which2){clearInterval(highlighting)
which2.filters.alpha.opacity=15}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<200)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)}
//--></SCRIPT>
<IMG align=middle alt="come here" border=0 onmouseout=low(this) onmouseover=high(this) src="shower_03.jpg" style="FILTER: alpha(opacity=30)">
</body>
</html>
|
|
|
|
|
|