缩放图片效果 复制此段代码看看效果就知道怎么用了

<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<TITLE>onMouseWheel Event Sample- www.51windows.Net</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%';
oCounter.innerText = count + '0%';
}
</SCRIPT>
</HEAD>
<BODY bgcolor="#e7d5cd">
<div align=center><h1>onmousewheel event缩放图片效果</h1>
例子使用onmousewheel事件展示图片的缩放效果
<br>
将鼠标移动到图片上,并上下滚动鼠标轴
<br>
<span style="font-weight:bold">Size =
<span id="oCounter" style="color:red;">100%</span></span>
<a href=http://www.baidu.com/ target=_blank><img id="oImage" src="http://www.jb51.net/logos.gif" onmousewheel="return Picture();" style="cursor:hand" ></a>
</div>
</BODY>
</HTML>

posted on 2007-11-15 10:56  活着的意义  阅读(1789)  评论(0编辑  收藏  举报