您的位置:首页 > 其它

onmousewheel event缩放图片效果

2009-07-06 13:19 239 查看
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<TITLE>onmousewheel event缩放图片效果</TITLE>
<SCRIPT>
var count = 10;
function Picture()
{
count = Counting(count);
Resize(count);
return false;
}
function Counting(count){
if (event.wheelDelta >= 120)
count++;
else if (event.wheelDelta <= -120)
count--;
return count;
}
function Resize(count){
oImage.style.zoom = count + '0%';
}
</SCRIPT>
</HEAD>
<BODY bgcolor="#e7d5cd">
<div align=center>onmousewheel event缩放图片效果<br>例子使用onmousewheel事件展示图片的缩放效果

<img id="oImage" src="image url" onmousewheel="return Picture();" style="cursor:hand" >
</div>
</BODY>
</HTML>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: