|
|
| 鼠标滚轮控制图片大小 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-7-21 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>鼠标滚轮控制图片大小</title>
</head>
<body>
<script language = "JavaScript">
function bbimg(o){
var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;
if(zoom>0) o.style.zoom=zoom+'%';
return false;}
</script>
<img src="rmb.jpg" border=0 onmousewheel="return bbimg(this)" onload="javascript:if(this.width>screen.width-600) this.style.width=screen.width-600;">
</body>
</html>
|
|
|
|
|
|