李妮娜 脚:论坛里面的图片能大能小(用鼠标控制)是如何实现的啊?是进论坛后台设置还是用程序员新加代码啊?

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 02:29:31

加代码(例子:)
这个自然是javascript需要做的事。鼠标中键的事件是onmousewheel,以下是一个示例的html代码。其中加入了一下onload事件,他判断图片的宽度是否大于200,是的话,将其设为200,以防止图片过大,影响页面的排版。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>利用鼠标中键缩放图片</title>
<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>
</head>

<body>
<center><img src="uploadfile/2005115214625668.JPG" onload="if(this.width>200)this.width=200" onmousewheel = "bbimg(this);"></center>
</body>
</html>